Somehow I never had -pedantic; fixed.

This commit is contained in:
Pietro Gagliardi 2015-11-17 19:52:05 -05:00
parent cfa09ecba0
commit 794186a5a9
1 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ OFILES := $(OFILES:%=$(OBJDIR)/%.o)
CFLAGS += \
-g \
-Wall -Wextra \
-Wall -Wextra -pedantic \
-Wno-unused-parameter \
-Wno-switch \
--std=c99
@ -19,7 +19,7 @@ CFLAGS += \
# this will hopelessly disbar Haiku for GCC 2
CXXFLAGS += \
-g \
-Wall -Wextra \
-Wall -Wextra -pedantic \
-Wno-unused-parameter \
-Wno-switch \
--std=c++03