Skip to content

Commit

Permalink
Clang tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom0Brien committed Apr 3, 2024
1 parent f339b0f commit 51011be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/individual/BaseClock.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ TEST_CASE("Testing base clock works correctly", "[api][base_clock]") {
// Compute the differences between the time pairs
int match_count = 0;
for (const auto& time_pairs : times) {
using namespace std::chrono;
using namespace std::chrono; // NOLINT(google-build-using-namespace)
const std::time_t ntt = system_clock::to_time_t(
system_clock::time_point(duration_cast<system_clock::duration>(time_pairs.first.time_since_epoch())));
const std::time_t stt = system_clock::to_time_t(
Expand Down

0 comments on commit 51011be

Please sign in to comment.