summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNico Weber <nicolasweber@gmx.de>2017-02-10 21:17:37 (GMT)
committerGitHub <noreply@github.com>2017-02-10 21:17:37 (GMT)
commit1df8b6e47cbd6b012b40321fb34998a268ccef49 (patch)
tree7eed5824b5fd0ee3c34a2fb384b0b2f3082a079c
parentf4ea9ca2f26931b4aa60179deb875361960492f0 (diff)
parentd560c62cae668852d0b84be5e4e573bd1fe709c8 (diff)
downloadNinja-1df8b6e47cbd6b012b40321fb34998a268ccef49.zip
Ninja-1df8b6e47cbd6b012b40321fb34998a268ccef49.tar.gz
Ninja-1df8b6e47cbd6b012b40321fb34998a268ccef49.tar.bz2
Merge pull request #1235 from refack/patch-1
Suppress warning 4244 to bootstrap on vs2017
-rwxr-xr-xconfigure.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.py b/configure.py
index 9ec368f..38521a2 100755
--- a/configure.py
+++ b/configure.py
@@ -302,7 +302,7 @@ if platform.is_msvc():
'/Zi', # Create pdb with debug info.
'/W4', # Highest warning level.
'/WX', # Warnings as errors.
- '/wd4530', '/wd4100', '/wd4706',
+ '/wd4530', '/wd4100', '/wd4706', '/wd4244',
'/wd4512', '/wd4800', '/wd4702', '/wd4819',
# Disable warnings about constant conditional expressions.
'/wd4127',