1
0
mirror of https://github.com/google/benchmark.git synced 2025-04-17 23:12:30 +08:00

link change

This commit is contained in:
Eric Fiselier 2015-03-05 21:20:38 -05:00
parent e41108fb57
commit ea6cc5118f

View File

@ -326,17 +326,25 @@ public:
BENCHMARK_ALWAYS_INLINE
int range_x() const {
assert(has_range_x_);
((void)has_range_x_); // Prevent unused warning.
return range_x_;
}
BENCHMARK_ALWAYS_INLINE
bool has_range_x() const {
return has_range_x_;
}
BENCHMARK_ALWAYS_INLINE
int range_y() const {
assert(has_range_y_);
((void)has_range_y_); // Prevent unused warning.
return range_y_;
}
BENCHMARK_ALWAYS_INLINE
bool has_range_y() const {
return has_range_y_;
}
BENCHMARK_ALWAYS_INLINE
int iterations() const { return total_iterations_; }