From d560c62cae668852d0b84be5e4e573bd1fe709c8 Mon Sep 17 00:00:00 2001 From: Refael Ackermann Date: Sat, 4 Feb 2017 18:38:20 -0500 Subject: Need this to build on vs2017 .\src\clparser.cc(56): note: see reference to function template instantiation '_OutIt std::transform>>,std::_String_iterator>>,int(__cdecl *)(int)>(_InIt,_InIt,_OutIt,_Fn1)' being compiled with [ _OutIt=std::_String_iterator>>, _InIt=std::_String_iterator>>, _Fn1=int (__cdecl *)(int) ] D:\bin\dev\VS\2017\BuildTools\VC\Tools\MSVC\14.10.24911\include\algorithm(946): warning C4244: '=': conversion from 'int' to 'char', possible loss of data --- configure.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure.py') 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', -- cgit v1.2.1