disable one more version of signed/unsigned mismatch warning in msvc

This commit is contained in:
Arvid Norberg 2015-04-27 03:19:10 +00:00
parent 2fff222235
commit c6da211585
1 changed files with 1 additions and 0 deletions

View File

@ -273,6 +273,7 @@ rule warnings ( properties * )
# disable warning C4389: signed/unsigned mismatch
result += <cflags>/wd4389 ;
result += <cflags>/wd4245 ;
result += <cflags>/wd4018 ;
# disable warning C4244: 'argument' : conversion from 'int' to 'unsigned short', possible loss of data
result += <cflags>/wd4244 ;
}