diff options
author | David Robillard <d@drobilla.net> | 2022-12-18 21:06:25 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-12-02 18:49:07 -0500 |
commit | 9c613b337712314c169d4add61212f4fc4102022 (patch) | |
tree | fe9191bed8d6aaf6339c82fe447def74e22ef11b /.clang-tidy | |
parent | a970f06aba98736223214a6fa995f4e82acd7132 (diff) | |
download | serd-9c613b337712314c169d4add61212f4fc4102022.tar.gz serd-9c613b337712314c169d4add61212f4fc4102022.tar.bz2 serd-9c613b337712314c169d4add61212f4fc4102022.zip |
Clean up numeric node construction and access API
Diffstat (limited to '.clang-tidy')
-rw-r--r-- | .clang-tidy | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.clang-tidy b/.clang-tidy index 39e09c64..0c240213 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -10,6 +10,11 @@ Checks: > -llvmlibc-*, -modernize-macro-to-enum, -readability-identifier-length, +CheckOptions: + - key: hicpp-uppercase-literal-suffix.NewSuffixes + value: 'L;U;UL;ULL' + - key: readability-uppercase-literal-suffix.NewSuffixes + value: 'L;U;UL;ULL' FormatStyle: file HeaderFilterRegex: '.*/serd/.*\.h' WarningsAsErrors: '*' |