Skip to content

Commit

Permalink
Fix pedantic compilation flag violation (google#1156)
Browse files Browse the repository at this point in the history
';' after method definition was removed.
Also, pedantic flag is now uncommented in CMakeList.txt.
  • Loading branch information
unitatem authored May 21, 2021
1 parent a4bcd93 commit db2de74
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -167,9 +167,8 @@ else()
# Disable warning when compiling tests as gtest does not use 'override'.
add_cxx_compiler_flag(-Wsuggest-override)
endif()
# Disabled until googletest (gmock) stops emitting variadic macro warnings
#add_cxx_compiler_flag(-pedantic)
#add_cxx_compiler_flag(-pedantic-errors)
add_cxx_compiler_flag(-pedantic)
add_cxx_compiler_flag(-pedantic-errors)
add_cxx_compiler_flag(-Wshorten-64-to-32)
add_cxx_compiler_flag(-fstrict-aliasing)
# Disable warnings regarding deprecated parts of the library while building
Expand Down
4 changes: 2 additions & 2 deletions src/benchmark.cc
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ void FlushStreams(BenchmarkReporter* reporter) {
if (!reporter) return;
std::flush(reporter->GetOutputStream());
std::flush(reporter->GetErrorStream());
};
}

// Reports in both display and file reporters.
void Report(BenchmarkReporter* display_reporter,
Expand All @@ -333,7 +333,7 @@ void Report(BenchmarkReporter* display_reporter,

FlushStreams(display_reporter);
FlushStreams(file_reporter);
};
}

void RunBenchmarks(const std::vector<BenchmarkInstance>& benchmarks,
BenchmarkReporter* display_reporter,
Expand Down

0 comments on commit db2de74

Please sign in to comment.