mirror of
https://github.com/google/benchmark.git
synced 2025-04-29 22:40:33 +08:00
Increase the kMaxIterations limit
This fixes #1663. Note that as a result of this change, the columns in the console output can become misaligned if the actual iteration count is too high. This will be dealt with in a separate commit.
This commit is contained in:
parent
344117638c
commit
970b757469
@ -64,7 +64,7 @@ MemoryManager* memory_manager = nullptr;
|
||||
|
||||
namespace {
|
||||
|
||||
static constexpr IterationCount kMaxIterations = 1000000000;
|
||||
static constexpr IterationCount kMaxIterations = 1000000000000;
|
||||
const double kDefaultMinTime =
|
||||
std::strtod(::benchmark::kDefaultMinTimeStr, /*p_end*/ nullptr);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user