File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -674,7 +674,7 @@ class Counter {
674
674
Counter (double v = 0 ., Flags f = kDefaults , OneK k = kIs1000 )
675
675
: value(v), flags(f), oneK(k) {}
676
676
677
- BENCHMARK_ALWAYS_INLINE operator double const &() const { return value; }
677
+ BENCHMARK_ALWAYS_INLINE operator double const &() const { return value; }
678
678
BENCHMARK_ALWAYS_INLINE operator double &() { return value; }
679
679
};
680
680
Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ struct ValueUnion {
120
120
121
121
explicit ValueUnion (std::size_t buff_size)
122
122
: size(sizeof (DataT) + buff_size),
123
- buff(::new (std::malloc(size)) DataT(), &std::free) {}
123
+ buff(::new (std::malloc(size)) DataT(), &std::free) {}
124
124
125
125
ValueUnion (ValueUnion&& other) = default ;
126
126
You can’t perform that action at this time.
0 commit comments