summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Benjamin Barenblat <bbaren@mit.edu>2014-12-21 23:03:39 -0600
committerGravatar Benjamin Barenblat <bbaren@mit.edu>2014-12-21 23:03:39 -0600
commit0ab6405b88426e7770688dc31c2651ac40462ee4 (patch)
treebb416e145ddac4296ca828c8683d442fefe4746f
parentf84a98f8dd45528fc6a80c44a42ac2294c271d9a (diff)
Makefile: Don’t warn about C++98 compatibility issues
The whole point of using C++11 is to get features that aren’t in C++98, so having Clang warn about compatibility problems with C++98 is really silly.
-rw-r--r--Makefile.am4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index 2f1e359..b77dbbc 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -28,7 +28,9 @@ CXXFLAGS = \
-fPIE
if USING_CLANG
-CXXFLAGS += -Weverything
+CXXFLAGS += \
+ -Weverything \
+ -Wno-c++98-compat
endif USING_CLANG
if USING_GCC