diff options
author | David Robillard <d@drobilla.net> | 2023-01-29 12:28:13 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-01-29 12:28:13 -0500 |
commit | c269ac85e42aad72ac685a4953a7167e8378613d (patch) | |
tree | 44b8c4835d8df05f0dc2d68336bc03dabfde0b75 /meson.build | |
parent | 1521f6628ee43deb09eb9c6d36a8a4efe8f7567c (diff) | |
download | zix-c269ac85e42aad72ac685a4953a7167e8378613d.tar.gz zix-c269ac85e42aad72ac685a4953a7167e8378613d.tar.bz2 zix-c269ac85e42aad72ac685a4953a7167e8378613d.zip |
Suppress new warnings in MSVS 2022
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meson.build b/meson.build index 5eaf574..0fecc7b 100644 --- a/meson.build +++ b/meson.build @@ -519,6 +519,8 @@ if not get_option('tests').disabled() '/wd4711', # function selected for automatic inline expansion '/wd4820', # padding added after construct '/wd5039', # throwing function passed to C (winbase.h) + '/wd5262', # implicit fall-through + '/wd5264', # const variable is not used ] endif |