Skip to content
Snippets Groups Projects
Commit 68becde6 authored by Meredith L. Patterson's avatar Meredith L. Patterson
Browse files

Merge pull request #158 from pesco/fix-dotdot-includes

disable warning on windows about '..' in include paths
parents 41b890c7 aa1d9b7d
No related branches found
No related tags found
No related merge requests found
......@@ -4,6 +4,9 @@ REM Exports CLFLAGS
REM Start with the most strict warning level
set WARNINGS=-W4 -Wall -WX
REM c4464 (relative include path contains '..')
set WARNINGS=%WARNINGS% -wd4464
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 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