diff options
author | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2015-10-17 14:21:56 -0700 |
---|---|---|
committer | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2015-10-17 14:21:56 -0700 |
commit | 3ac9555d8d8525c73257903023a818f27d4ef086 (patch) | |
tree | 9b0275e8a3e963635101bb8b0cf6c8b35c4b279c /Makefile | |
parent | 65df1ef955d009b6985841ababc48ab075155a37 (diff) |
Enable a few more warnings
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -12,7 +12,7 @@ EXECUTABLE=$(BUILD)/test VERSION=$(shell sed -n 's/.*version \(.*\).*/\1/p' src/pugiconfig.hpp) RELEASE=$(shell git ls-files src docs/*.html docs/*.css docs/samples docs/images scripts contrib readme.txt) -CXXFLAGS=-g -Wall -Wextra -Werror -pedantic +CXXFLAGS=-g -Wall -Wextra -Werror -Wpedantic -Wundef -Wshadow -Wold-style-cast -Wcast-align LDFLAGS= ifeq ($(config),release) |