summaryrefslogtreecommitdiffstats
path: root/configure.py
diff options
context:
space:
mode:
authorBeren Minor <beren.minor+git@gmail.com>2014-12-31 11:17:21 (GMT)
committerBeren Minor <beren.minor+git@gmail.com>2014-12-31 11:17:21 (GMT)
commitd1e6a29fd30337e86c346208661c00233fd223f7 (patch)
treee3085f86cb3b2cc2cdaba97ab5ad9082da4b7a1b /configure.py
parent82e372d5fd09ef37ab1b2f1c1cc175df26648653 (diff)
downloadNinja-d1e6a29fd30337e86c346208661c00233fd223f7.zip
Ninja-d1e6a29fd30337e86c346208661c00233fd223f7.tar.gz
Ninja-d1e6a29fd30337e86c346208661c00233fd223f7.tar.bz2
Fix compilation errors on Visual Studio 2015 (_MSC_VER 1900).
Diffstat (limited to 'configure.py')
-rwxr-xr-xconfigure.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.py b/configure.py
index 0f34e77..fe71372 100755
--- a/configure.py
+++ b/configure.py
@@ -284,6 +284,8 @@ if platform.is_msvc():
'/wd4512', '/wd4800', '/wd4702', '/wd4819',
# Disable warnings about passing "this" during initialization.
'/wd4355',
+ # Disable warnings about ignored typedef in DbgHelp.h
+ '/wd4091',
'/GR-', # Disable RTTI.
# Disable size_t -> int truncation warning.
# We never have strings or arrays larger than 2**31.