Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions test/complexity_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
#include <cassert>
#include <cmath>
#include <cstdlib>
#include <string>
#include <vector>

#include "benchmark/benchmark.h"
Expand Down
1 change: 1 addition & 0 deletions test/internal_threading_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
#undef NDEBUG

#include <chrono>
#include <ratio>
#include <thread>

#include "../src/timers.h"
Expand Down
3 changes: 1 addition & 2 deletions test/locale_impermeability_test.cc
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#undef NDEBUG
#include <cassert>
#include <cmath>
#include <cstdlib>
#include <locale>

#include "benchmark/benchmark.h"
#include "output_test.h"
Expand Down
2 changes: 1 addition & 1 deletion test/output_test_helper.cc
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,7 @@ void RunOutputTests(int argc, char* argv[]) {
BENCHMARK_RESTORE_DEPRECATED_WARNING

int SubstrCnt(const std::string& haystack, const std::string& pat) {
if (pat.length() == 0) {
if (pat.empty()) {
return 0;
}
int count = 0;
Expand Down
1 change: 0 additions & 1 deletion test/templated_fixture_method_test.cc
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@

#include <cassert>
#include <memory>

#include "benchmark/benchmark.h"

Expand Down
Loading