Skip to content

Commit 8784545

Browse files
committed
tidy: Disable "readability-redundant-inline-specifier"
Disable the "readability-redundant-inline-specifier" check. It is actually nice, but clang actually treats the inline keyword as the inlining hint, so this must be investigated further.
1 parent 602b8f9 commit 8784545

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.clang-tidy

+2
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,8 @@ Checks:
6464
- "-readability-magic-numbers"
6565
- "-readability-named-parameter"
6666
- "-readability-qualified-auto"
67+
# TODO: Check if removing inline affects clang optimized builds.
68+
- "-readability-redundant-inline-specifier"
6769
- "-readability-uppercase-literal-suffix"
6870

6971
CheckOptions:

0 commit comments

Comments
 (0)