diff options
author | David Robillard <d@drobilla.net> | 2024-07-18 17:38:35 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2024-07-18 17:38:35 -0400 |
commit | c41d9f942cd81e3125896c4727e808072354820a (patch) | |
tree | 712ae953be5a5df0ac419892642cce4d0e534d4a | |
parent | 59bcfaafcad0f3d85d33fadf21d4d0a2e6575a64 (diff) | |
download | ganv-c41d9f942cd81e3125896c4727e808072354820a.tar.gz ganv-c41d9f942cd81e3125896c4727e808072354820a.tar.bz2 ganv-c41d9f942cd81e3125896c4727e808072354820a.zip |
Enable clang-tidy check for uppercase integer literal suffixes
-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 |