Skip to content
Snippets Groups Projects
Commit b3a8403b authored by Nicolas Léveillé's avatar Nicolas Léveillé
Browse files

Remove more useless MSVC warnings

parent efea1041
No related branches found
No related tags found
No related merge requests found
...@@ -7,6 +7,16 @@ set WARNINGS=-W4 -Wall -WX ...@@ -7,6 +7,16 @@ set WARNINGS=-W4 -Wall -WX
REM c4464 (relative include path contains '..') REM c4464 (relative include path contains '..')
set WARNINGS=%WARNINGS% -wd4464 set WARNINGS=%WARNINGS% -wd4464
REM c4189 (local variable is initialized but not referenced)
set WARNINGS=%WARNINGS% -wd4189
REM c4018 (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
REM c4457 (declaration shadowing function parameter) REM c4457 (declaration shadowing function parameter)
REM FIXME(windows) TODO(uucidl): remove occurence of c4457 and reactivate REM FIXME(windows) TODO(uucidl): remove occurence of c4457 and reactivate
REM FIXME(windows) TODO(uucidl): remove occurence of c4456 and reactivate REM FIXME(windows) TODO(uucidl): remove occurence of c4456 and reactivate
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment