Merge pull request #1101 from fbenkstein/vs2010

disable warning about conditional expressions
This commit is contained in:
Nico Weber 2016-02-05 11:39:40 -05:00
commit a4d4787de1

View File

@ -302,6 +302,8 @@ if platform.is_msvc():
'/WX', # Warnings as errors.
'/wd4530', '/wd4100', '/wd4706',
'/wd4512', '/wd4800', '/wd4702', '/wd4819',
# Disable warnings about constant conditional expressions.
'/wd4127',
# Disable warnings about passing "this" during initialization.
'/wd4355',
# Disable warnings about ignored typedef in DbgHelp.h