diff options
author | David Robillard <d@drobilla.net> | 2024-10-01 18:25:32 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2024-10-01 18:25:44 -0400 |
commit | 8138e876cedf396a7dc90409ba70d8f2a5659ecb (patch) | |
tree | 41c5d368320a1d11d5be387f700a6bb76001f1b0 /meson.build | |
parent | e47873e863b7fb6bb081681f1944135c1c1cb61a (diff) | |
download | chilbert-8138e876cedf396a7dc90409ba70d8f2a5659ecb.tar.gz chilbert-8138e876cedf396a7dc90409ba70d8f2a5659ecb.tar.bz2 chilbert-8138e876cedf396a7dc90409ba70d8f2a5659ecb.zip |
Suppress new warnings in clang-tidy 18
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meson.build b/meson.build index ccbac27..e175c30 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -# Copyright 2019-2023 David Robillard <d@drobilla.net> +# Copyright 2019-2024 David Robillard <d@drobilla.net> # SPDX-License-Identifier: 0BSD OR GPL-2.0-or-later project( @@ -34,6 +34,7 @@ if cpp.get_id() in ['clang', 'emscripten'] '-Wno-c++98-compat', '-Wno-c++98-compat-pedantic', '-Wno-padded', + '-Wno-unsafe-buffer-usage', ] if not meson.is_cross_build() |