diff options
author | David Robillard <d@drobilla.net> | 2023-01-29 12:29:37 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-01-29 12:29:37 -0500 |
commit | 3d685246480d5bd813f5d5f15a9352a9f4a1600c (patch) | |
tree | 5fb595d7f0ccb85d8c9ed3d0a53bbc819425227f | |
parent | 06c3b001eb292d579f86813cee293d8587de7d6f (diff) | |
download | raul-3d685246480d5bd813f5d5f15a9352a9f4a1600c.tar.gz raul-3d685246480d5bd813f5d5f15a9352a9f4a1600c.tar.bz2 raul-3d685246480d5bd813f5d5f15a9352a9f4a1600c.zip |
Suppress new warnings in MSVS 2022
-rw-r--r-- | meson/suppressions/meson.build | 1 | ||||
-rw-r--r-- | test/meson.build | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/meson/suppressions/meson.build b/meson/suppressions/meson.build index a5da946..b134f3c 100644 --- a/meson/suppressions/meson.build +++ b/meson/suppressions/meson.build @@ -44,6 +44,7 @@ if is_variable('cpp') '/wd5026', # move constructor implicitly deleted '/wd5027', # move assignment operator implicitly deleted '/wd5045', # compiler will insert Spectre mitigation + '/wd5262', # implicit fall-through ] endif endif diff --git a/test/meson.build b/test/meson.build index fc04209..829a59c 100644 --- a/test/meson.build +++ b/test/meson.build @@ -48,6 +48,7 @@ elif cpp.get_id() == 'msvc' header_args += [ '/wd4626', # assignment operator implicitly deleted '/wd5027', # move assignment operator implicitly deleted + '/wd5262', # implicit fall-through ] endif |