diff options
author | yenatch <yenatch@gmail.com> | 2017-07-06 22:25:16 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-06 22:25:16 -0400 |
commit | bd4a6520eaaaac186b6b26557305be8939a7ea2a (patch) | |
tree | c60fcd65afb446a8b459358edd48c5a60eba9376 /tools/preproc | |
parent | e39f55f55080108ced3ff5cb16b2181d7fec9d92 (diff) | |
parent | 8f1190efd62fcda55fd580e2609efbb055bc0d3d (diff) |
Merge pull request #355 from yenatch/fix-warnings
Fix uncaught cpp warnings
Diffstat (limited to 'tools/preproc')
-rw-r--r-- | tools/preproc/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/preproc/Makefile b/tools/preproc/Makefile index 1f4c58e21..ec4a5f365 100644 --- a/tools/preproc/Makefile +++ b/tools/preproc/Makefile @@ -1,6 +1,6 @@ CXX := g++ -CXXFLAGS := -std=c++11 -O2 -s -Wall -Wno-switch +CXXFLAGS := -std=c++11 -O2 -s -Wall -Wno-switch -Werror SRCS := asm_file.cpp c_file.cpp charmap.cpp preproc.cpp string_parser.cpp \ utf8.cpp |