diff options
Diffstat (limited to 'lib/libcxx/utils/google-benchmark/src/log.h')
-rw-r--r-- | lib/libcxx/utils/google-benchmark/src/log.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/libcxx/utils/google-benchmark/src/log.h b/lib/libcxx/utils/google-benchmark/src/log.h index 978cb0b4c8c..47d0c35c018 100644 --- a/lib/libcxx/utils/google-benchmark/src/log.h +++ b/lib/libcxx/utils/google-benchmark/src/log.h @@ -4,7 +4,7 @@ #include <iostream> #include <ostream> -#include "benchmark/macros.h" +#include "benchmark/benchmark.h" namespace benchmark { namespace internal { @@ -66,8 +66,9 @@ inline LogType& GetLogInstanceForLevel(int level) { } // end namespace internal } // end namespace benchmark +// clang-format off #define VLOG(x) \ (::benchmark::internal::GetLogInstanceForLevel(x) << "-- LOG(" << x << "):" \ " ") - -#endif
\ No newline at end of file +// clang-format on +#endif |