diff options
author | David Robillard <d@drobilla.net> | 2023-11-11 10:59:33 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-11-11 10:59:33 -0500 |
commit | ad651857ee2435582115e7de0e50e645e0aa9fc7 (patch) | |
tree | 450c52b2cdec6e2a0c857c2233a0ca0ee3da8a05 /examples/.clang-tidy | |
parent | 61980dbb9e6968f9d99df9cbd4bbe2f46f0c5050 (diff) | |
download | pugl-ad651857ee2435582115e7de0e50e645e0aa9fc7.tar.gz pugl-ad651857ee2435582115e7de0e50e645e0aa9fc7.tar.bz2 pugl-ad651857ee2435582115e7de0e50e645e0aa9fc7.zip |
Suppress new warnings in clang-tidy 16
Diffstat (limited to 'examples/.clang-tidy')
-rw-r--r-- | examples/.clang-tidy | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/examples/.clang-tidy b/examples/.clang-tidy index 500dff1..7dde8bb 100644 --- a/examples/.clang-tidy +++ b/examples/.clang-tidy @@ -1,4 +1,4 @@ -# Copyright 2020-2022 David Robillard <d@drobilla.net> +# Copyright 2020-2023 David Robillard <d@drobilla.net> # SPDX-License-Identifier: 0BSD OR ISC Checks: > @@ -13,6 +13,7 @@ Checks: > -cert-dcl37-c, -cert-dcl51-cpp, -cert-err33-c, + -cert-err34-c, -concurrency-mt-unsafe, -cppcoreguidelines-avoid-const-or-ref-data-members, -cppcoreguidelines-avoid-non-const-global-variables, @@ -36,4 +37,7 @@ Checks: > -performance-no-int-to-ptr, -readability-function-cognitive-complexity, -readability-implicit-bool-conversion, +CheckOptions: + - key: cppcoreguidelines-avoid-do-while.IgnoreMacros + value: true InheritParentConfig: true |