diff options
author | David Robillard <d@drobilla.net> | 2025-02-10 15:16:29 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2025-02-10 21:06:19 -0500 |
commit | 43b3ea33dff3da7e91b59a67bca5616da7d32121 (patch) | |
tree | 2b91d475dc614d26cca6b79e825878b41c092384 /test/cpp/.clang-tidy | |
parent | 63b0e7c87dd0fa0b6f3c5dc0f75fb616a5a57ee1 (diff) | |
download | lilv-43b3ea33dff3da7e91b59a67bca5616da7d32121.tar.gz lilv-43b3ea33dff3da7e91b59a67bca5616da7d32121.tar.bz2 lilv-43b3ea33dff3da7e91b59a67bca5616da7d32121.zip |
Suppress new warning in clang-tidy 19
Clever, but I'm not sure how to appease it. It's technically accurate, but
someone trying to attack lilv via a hostile LV2_PATH isn't really a concern in
the real world.
Diffstat (limited to 'test/cpp/.clang-tidy')
-rw-r--r-- | test/cpp/.clang-tidy | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/cpp/.clang-tidy b/test/cpp/.clang-tidy index 5d20fa0..a087a3d 100644 --- a/test/cpp/.clang-tidy +++ b/test/cpp/.clang-tidy @@ -1,7 +1,8 @@ -# Copyright 2020-2022 David Robillard <d@drobilla.net> +# Copyright 2020-2025 David Robillard <d@drobilla.net> # SPDX-License-Identifier: 0BSD OR ISC Checks: > + -*-nullptr, -cert-dcl50-cpp, -cppcoreguidelines-macro-usage, -cppcoreguidelines-pro-bounds-array-to-pointer-decay, @@ -14,6 +15,7 @@ Checks: > -modernize-return-braced-init-list, -modernize-use-nodiscard, -modernize-use-trailing-return-type, + -modernize-use-using, -readability-implicit-bool-conversion, HeaderFilterRegex: '.*/lilvmm\.hpp' InheritParentConfig: true |