Remove c4388 signed/unsigned mismatch

It is the counterpart to c4018 for x64 compilations.
This commit is contained in:
Nicolas Léveillé 2015-12-13 15:19:42 +01:00
parent b3a8403b8e
commit c5ca35c347

View file

@ -10,12 +10,12 @@ set WARNINGS=%WARNINGS% -wd4464
REM c4189 (local variable is initialized but not referenced)
set WARNINGS=%WARNINGS% -wd4189
REM c4018 (signed/unsigned mismatch)
REM c4018/c4388 (signed/unsigned mismatch)
REM basically useless. Complains about obviously correct code like:
REM uint8_t x = 60;
REM size_t i = 9;
REM i < x/8
set WARNINGS=%WARNINGS% -wd4018
set WARNINGS=%WARNINGS% -wd4018 -wd4388
REM c4457 (declaration shadowing function parameter)
REM FIXME(windows) TODO(uucidl): remove occurence of c4457 and reactivate