Skip to content

Commit ad2b1c9

Browse files
committed
clang format yet again
1 parent 4b184d4 commit ad2b1c9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

include/benchmark/benchmark.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -674,7 +674,7 @@ class Counter {
674674
Counter(double v = 0., Flags f = kDefaults, OneK k = kIs1000)
675675
: value(v), flags(f), oneK(k) {}
676676

677-
BENCHMARK_ALWAYS_INLINE operator double const&() const { return value; }
677+
BENCHMARK_ALWAYS_INLINE operator double const &() const { return value; }
678678
BENCHMARK_ALWAYS_INLINE operator double&() { return value; }
679679
};
680680

src/sysinfo.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ struct ValueUnion {
120120

121121
explicit ValueUnion(std::size_t buff_size)
122122
: size(sizeof(DataT) + buff_size),
123-
buff(::new(std::malloc(size)) DataT(), &std::free) {}
123+
buff(::new (std::malloc(size)) DataT(), &std::free) {}
124124

125125
ValueUnion(ValueUnion&& other) = default;
126126

0 commit comments

Comments
 (0)