Skip to content

Commit

Permalink
Merge pull request #1 from gilcu3/master
Browse files Browse the repository at this point in the history
Added option to makefile to avoid compilation error in current c++ standard using gnu compiler.
  • Loading branch information
aaronmcdaid committed Jan 23, 2017
2 parents 7244a4e + 8486144 commit 12a92a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -16,7 +16,7 @@ tags:

#-Wclobbered -Wempty-body \ -Wignored-qualifiers -Woverride-init \ -Wtype-limits -Wunused-but-set-parameter
# I'm including most of the -Wextra flags, but I want rid of the enum-in-conditional warning from boost
PROFILE= -O3 #-ggdb -pg #-DNDEBUG # http://linux.die.net/man/1/gcc
PROFILE= -O3 -std=gnu++98 #-ggdb -pg #-DNDEBUG # http://linux.die.net/man/1/gcc
CFLAGS= \
-Wmissing-field-initializers \
-Wsign-compare \
Expand Down

0 comments on commit 12a92a5

Please sign in to comment.