1
0
mirror of https://github.com/google/benchmark.git synced 2025-03-30 14:10:25 +08:00

Revert "link change"

I did not intent to commit these changes. Sorry :(

This reverts commit ea6cc5118f.
This commit is contained in:
Eric Fiselier 2015-03-05 21:21:27 -05:00
parent ea6cc5118f
commit 2fc65ff973

View File

@ -326,25 +326,17 @@ 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_; }