diff options
Diffstat (limited to '3rdparty/benchmark/src/walltime.h')
-rw-r--r-- | 3rdparty/benchmark/src/walltime.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/3rdparty/benchmark/src/walltime.h b/3rdparty/benchmark/src/walltime.h new file mode 100644 index 00000000000..38c26f33213 --- /dev/null +++ b/3rdparty/benchmark/src/walltime.h @@ -0,0 +1,17 @@ +#ifndef BENCHMARK_WALLTIME_H_ +#define BENCHMARK_WALLTIME_H_ + +#include <string> + +namespace benchmark { +typedef double WallTime; + +namespace walltime { +WallTime Now(); +} // end namespace walltime + +std::string LocalDateTimeString(); + +} // end namespace benchmark + +#endif // BENCHMARK_WALLTIME_H_ |