diff options
-rw-r--r-- | meson/suppressions/meson.build | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/meson/suppressions/meson.build b/meson/suppressions/meson.build index 508bbbd5..46ed049c 100644 --- a/meson/suppressions/meson.build +++ b/meson/suppressions/meson.build @@ -1,11 +1,7 @@ # Copyright 2020-2023 David Robillard <d@drobilla.net> # SPDX-License-Identifier: 0BSD OR ISC -# Project-specific warning suppressions. -# -# This should be used in conjunction with the generic "warnings" sibling that -# enables all reasonable warnings for the compiler. It lives here just to keep -# the top-level meson.build more readable. +# Project-specific warning suppressions ##### # C # @@ -77,6 +73,7 @@ if is_variable('cc') '/experimental:external', '/external:W0', '/external:anglebrackets', + '/wd4706', # assignment within conditional expression '/wd4996', # POSIX name for this item is deprecated ] |