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

This commit is contained in:
Eric Fiselier 2015-10-01 18:46:39 -06:00
parent ed0a2eb741
commit 3dd14f0724

View File

@ -101,7 +101,7 @@ bool IsZero(double n) {
// For non-dense Range, intermediate values are powers of kRangeMultiplier.
static const int kRangeMultiplier = 8;
static const int kMaxIterations = 1000000000;
static const size_t kMaxIterations = 1000000000;
bool running_benchmark = false;