Commit 3dd14f07 by Eric Fiselier

Make the type of kMaxIterations consistent with the type of the iteration count

parent ed0a2eb7
...@@ -101,7 +101,7 @@ bool IsZero(double n) { ...@@ -101,7 +101,7 @@ bool IsZero(double n) {
// For non-dense Range, intermediate values are powers of kRangeMultiplier. // For non-dense Range, intermediate values are powers of kRangeMultiplier.
static const int kRangeMultiplier = 8; static const int kRangeMultiplier = 8;
static const int kMaxIterations = 1000000000; static const size_t kMaxIterations = 1000000000;
bool running_benchmark = false; bool running_benchmark = false;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment