diff options
author | David Robillard <d@drobilla.net> | 2022-09-09 13:20:41 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-09-09 13:22:42 -0400 |
commit | a459db9bf692e11c2d4ecb6047c2878cdcbeb2bd (patch) | |
tree | ad2c552f5fc43ba99a35d93f7d9ab58f5abef695 /test | |
parent | 24327302723df7c9d32d9a540cd1f586489ea616 (diff) | |
download | lv2-a459db9bf692e11c2d4ecb6047c2878cdcbeb2bd.tar.xz |
Use uppercase integer literal suffixes
Diffstat (limited to 'test')
-rw-r--r-- | test/.clang-tidy | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/test/.clang-tidy b/test/.clang-tidy index 1b74f21..53f37b1 100644 --- a/test/.clang-tidy +++ b/test/.clang-tidy @@ -5,7 +5,6 @@ Checks: > *, -*-else-after-return, -*-magic-numbers, - -*-uppercase-literal-suffix, -altera-*, -bugprone-easily-swappable-parameters, -bugprone-macro-parentheses, @@ -21,3 +20,8 @@ Checks: > WarningsAsErrors: '*' HeaderFilterRegex: '.*' FormatStyle: file +CheckOptions: + - key: hicpp-uppercase-literal-suffix.NewSuffixes + value: L;U;f + - key: readability-uppercase-literal-suffix.NewSuffixes + value: L;U;f |