Microsoft (R) C/C++ Optimizing Compiler Version 18.00.40629 for x86 error messages :
src\benchmark_runner.cc(62): error C2146: syntax error : missing ';' before identifier 'IterationCount'
src\benchmark_runner.cc(62): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int

Here is the point:
|
static constexpr IterationCount kMaxIterations = 1000000000; |
The suggestion is to replace ‘constexpr’ with 'const'.
Microsoft (R) C/C++ Optimizing Compiler Version 18.00.40629 for x86 error messages :

src\benchmark_runner.cc(62): error C2146: syntax error : missing ';' before identifier 'IterationCount'
src\benchmark_runner.cc(62): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
Here is the point:
benchmark/src/benchmark_runner.cc
Line 62 in 7d97a05
The suggestion is to replace ‘constexpr’ with 'const'.