We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b2d747 commit 0e9a9f5Copy full SHA for 0e9a9f5
.clang-tidy
@@ -15,4 +15,5 @@ UseColor: true
15
FormatStyle: 'file'
16
CheckOptions:
17
modernize-use-nullptr.NullMacros: 'NULL'
18
+ # std::exception_ptr is a cheap to copy, pointer-like type; we pass it by value all the time.
19
performance-unnecessary-value-param.AllowedTypes: 'std::exception_ptr'
.github/workflows/clang_tidy.yml
@@ -62,4 +62,4 @@ jobs:
62
- name: Run Clang Tidy
63
working-directory: ice-demos/cpp
64
run: |
65
- run-clang-tidy-19 -j$(nproc) -quiet -enable-check-profile
+ run-clang-tidy-19 -j$(nproc) -quiet
0 commit comments