diff options
Diffstat (limited to '.clang-tidy')
-rw-r--r-- | .clang-tidy | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.clang-tidy b/.clang-tidy index ff7e030..b7c88e6 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -10,7 +10,6 @@ Checks: > -*-named-parameter, -*-narrowing-conversions, -*-no-malloc, - -*-uppercase-literal-suffix, -*-use-auto, -*-use-nullptr, -*-vararg, @@ -82,6 +81,11 @@ Checks: > -readability-redundant-casting, -readability-redundant-inline-specifier, -readability-simplify-boolean-expr, +CheckOptions: + - key: hicpp-uppercase-literal-suffix.NewSuffixes + value: 'L;U;UL;ULL' + - key: readability-uppercase-literal-suffix.NewSuffixes + value: 'L;U;UL;ULL' WarningsAsErrors: '*' HeaderFilterRegex: '.*' FormatStyle: file |