From 2630610bd4a2bab84d6fb89b8f18c87dc9f4c73b Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 9 Jan 2021 23:32:41 +0100 Subject: Supress windows warning about exceptions Shame to turn this off, but I don't know how to avoid it as MSVC apparently can't figure out that vkGetInstanceProcAddr is a C function that doesn't throw. --- meson.build | 1 + 1 file changed, 1 insertion(+) (limited to 'meson.build') diff --git a/meson.build b/meson.build index 977f685..cadbf58 100644 --- a/meson.build +++ b/meson.build @@ -124,6 +124,7 @@ if get_option('strict') '/wd4996', # function or variable may be unsafe '/wd5026', # move constructor implicitly deleted '/wd5027', # move assignment operator implicitly deleted + '/wd5039', # potentially throwing function passed to C '/wd5045', # will insert Spectre mitigation for memory load ] endif -- cgit v1.2.1