summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-11-12 02:02:44 +0100
committerDavid Robillard <d@drobilla.net>2020-11-12 12:57:39 +0100
commit5608fcafaeca3e80688f0fa257b93a05571b9624 (patch)
tree700bf6e022331605522d2b51f1121f78e80f3141
parentfa519c814e0eb4fcba0ddb14cea825c8a042e69a (diff)
downloadraul-5608fcafaeca3e80688f0fa257b93a05571b9624.tar.gz
raul-5608fcafaeca3e80688f0fa257b93a05571b9624.tar.bz2
raul-5608fcafaeca3e80688f0fa257b93a05571b9624.zip
Suppress MSVC warnings
-rw-r--r--wscript3
1 files changed, 3 insertions, 0 deletions
diff --git a/wscript b/wscript
index 21dbc75..67825b7 100644
--- a/wscript
+++ b/wscript
@@ -53,8 +53,11 @@ def configure(conf):
'/wd4625', # copy constructor implicitly deleted
'/wd4626', # assignment operator implicitly deleted
'/wd4706', # assignment within conditional expression
+ '/wd4710', # function not inlined
+ '/wd4711', # function selected for automatic inline expansion
'/wd5026', # move constructor implicitly deleted
'/wd5027', # move assignment operator implicitly deleted
+ '/wd5045', # compiler will insert Spectre mitigation
]
})