aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2015-09-11 13:31:16 -0700
committerGravatar Craig Tiller <ctiller@google.com>2015-09-11 13:31:16 -0700
commitb9d3596cb1cf9406ea6b1c67eda04a497857f6b4 (patch)
tree886a1b0bd0b59a893b3b0452c86542bdb7fe7755 /Makefile
parent8648c0551fabb7ee49606d1157f95818704c7065 (diff)
Enable -Wshadow
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 87a014586e..d9382bab59 100644
--- a/Makefile
+++ b/Makefile
@@ -245,7 +245,7 @@ ifdef EXTRA_DEFINES
DEFINES += $(EXTRA_DEFINES)
endif
-CFLAGS += -std=c89 -pedantic -Wsign-conversion -Wconversion
+CFLAGS += -std=c89 -pedantic -Wsign-conversion -Wconversion -Wshadow
ifeq ($(HAS_CXX11),true)
CXXFLAGS += -std=c++11
else