Remove c4388 signed/unsigned mismatch
It is the counterpart to c4018 for x64 compilations.
This commit is contained in:
parent
b3a8403b8e
commit
c5ca35c347
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue