Skip to content

Commit 76d2e34

Browse files
authored
Fix clang-tidy behavior with 'chrono' headers (#320)
This seems to be known issue in clang: llvm/llvm-project#98122 Provide a workaround for that
1 parent de6e25e commit 76d2e34

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

modules/core/perf/func_tests/test_task.hpp

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
#pragma once
22

3+
#include <chrono>
34
#include <memory>
45
#include <thread>
56
#include <vector>
67

78
#include "core/task/include/task.hpp"
89

9-
using namespace std::chrono_literals;
10-
1110
namespace ppc::test::perf {
1211

1312
template <class T>
@@ -44,7 +43,7 @@ class FakePerfTask : public TestTask<T> {
4443
explicit FakePerfTask(ppc::core::TaskDataPtr perf_task_data) : TestTask<T>(perf_task_data) {}
4544

4645
bool RunImpl() override {
47-
std::this_thread::sleep_for(20000ms);
46+
std::this_thread::sleep_for(std::chrono::milliseconds(21000));
4847
return TestTask<T>::RunImpl();
4948
}
5049
};

0 commit comments

Comments
 (0)