We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
.clang-tidy
1 parent 44246e4 commit d390223Copy full SHA for d390223
2 files changed
modules/core/performance/tests/.clang-tidy
@@ -38,4 +38,4 @@ Checks: >
38
39
CheckOptions:
40
- key: readability-function-cognitive-complexity.Threshold
41
- value: 70 # default: 25
+ value: 50 # default: 25
modules/core/performance/tests/perf_tests.cpp
@@ -141,7 +141,7 @@ class GetStringTaskTypeTest : public ::testing::TestWithParam<TaskTypeTestCase>
141
(*j)["tasks"]["tbb"] = "TBB";
142
(*j)["tasks"]["seq"] = "SEQ";
143
144
- std::ofstream(temp_path) << (*j).dump();
+ std::ofstream(temp_path) << j->dump();
145
}
146
147
void TearDown() override { std::filesystem::remove(temp_path); }
0 commit comments