diff options
author | David Robillard <d@drobilla.net> | 2023-09-21 20:01:40 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-09-21 20:01:40 -0400 |
commit | bd44c0358b07bc7af07c5fedd160c2553be66d4d (patch) | |
tree | 9410d14eedb7ac65fd4f6b214a5d46734c3aa60d /meson.build | |
parent | fc9c89c66dcdfe296e3b59344cddf4ba52b25be6 (diff) | |
download | zix-bd44c0358b07bc7af07c5fedd160c2553be66d4d.tar.gz zix-bd44c0358b07bc7af07c5fedd160c2553be66d4d.tar.bz2 zix-bd44c0358b07bc7af07c5fedd160c2553be66d4d.zip |
Suppress or fix warnings in clang 16
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meson.build b/meson.build index 1dc5f5f..7a0465a 100644 --- a/meson.build +++ b/meson.build @@ -48,6 +48,7 @@ if cc.get_id() in ['clang', 'emscripten'] '-Wno-declaration-after-statement', '-Wno-implicit-fallthrough', # Really for clang < 12 '-Wno-padded', + '-Wno-unsafe-buffer-usage', ] if not meson.is_cross_build() |