summaryrefslogtreecommitdiff
path: root/ninja/configure.py
diff options
context:
space:
mode:
Diffstat (limited to 'ninja/configure.py')
-rwxr-xr-xninja/configure.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/ninja/configure.py b/ninja/configure.py
index 9ec368f364f..07a2726d08d 100755
--- a/ninja/configure.py
+++ b/ninja/configure.py
@@ -310,6 +310,8 @@ if platform.is_msvc():
'/wd4355',
# Disable warnings about ignored typedef in DbgHelp.h
'/wd4091',
+ # Disable warnings about 'noexcept' used with no exception handling mode specified
+ '/wd4577',
'/GR-', # Disable RTTI.
# Disable size_t -> int truncation warning.
# We never have strings or arrays larger than 2**31.