summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--meson.build3
1 files changed, 3 insertions, 0 deletions
diff --git a/meson.build b/meson.build
index cf632f0c..46b72be0 100644
--- a/meson.build
+++ b/meson.build
@@ -238,6 +238,9 @@ if is_msvc
# dangerous ones glaring, distributed with GLib
'/EHsc', # avoid warnings caused by exception handling model used
'/utf-8', # Avoid C4819 unicode conversion warnings when building on CJK locales
+ '/wd4589', # Constructor of abstract class 'bb' ignores
+ # initializer for virtual base class 'aa'
+ '/wd4702', # unreachable code
]
if host_machine.cpu_family() == 'x86_64' or host_machine.cpu_family() == 'aarch64'
# 'var' : conversion from 'size_t' to 'type', possible loss of data (applies on 64-bit builds)