Skip to content

Commit

Permalink
Fix error in newer clang-tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
TrentHouliston committed Aug 9, 2024
1 parent 238bf4c commit 26b917b
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .clang-tidy
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ Checks: >
-modernize-use-emplace
WarningsAsErrors: ""
HeaderFilterRegex: ".*"
AnalyzeTemporaryDtors: false
FormatStyle: file
CheckOptions:
- key: cppcoreguidelines-avoid-magic-numbers.IgnoredFloatingPointValues
Expand All @@ -50,9 +49,9 @@ CheckOptions:
- key: readability-magic-numbers.IgnoredIntegerValues
value: "1;2;3;4;"
- key: llvm-namespace-comment.ShortNamespaceLines
value: '1'
value: "1"
- key: llvm-namespace-comment.SpacesBeforeComments
value: '2'
value: "2"
- key: misc-move-constructor-init.IncludeStyle
value: google
- key: modernize-loop-convert.NamingStyle
Expand All @@ -62,10 +61,10 @@ CheckOptions:
- key: modernize-replace-auto-ptr.IncludeStyle
value: google
- key: performance-for-range-copy.WarnOnAllAutoCopies
value: '1'
value: "1"
- key: performance-type-promotion-in-math-fn.IncludeStyle
value: google
- key: performance-unnecessary-value-param.IncludeStyle
value: google
- key: readability-braces-around-statements.ShortStatementLines
value: '1'
value: "1"

0 comments on commit 26b917b

Please sign in to comment.