clang format header fixes

This commit is contained in:
Dominic Hamon 2024-07-17 13:27:41 +01:00
parent 99410f400c
commit 299a8b881d
1 changed files with 1 additions and 1 deletions

View File

@ -674,7 +674,7 @@ class Counter {
Counter(double v = 0., Flags f = kDefaults, OneK k = kIs1000)
: value(v), flags(f), oneK(k) {}
BENCHMARK_ALWAYS_INLINE operator double const &() const { return value; }
BENCHMARK_ALWAYS_INLINE operator double const&() const { return value; }
BENCHMARK_ALWAYS_INLINE operator double&() { return value; }
};