From 0ab6405b88426e7770688dc31c2651ac40462ee4 Mon Sep 17 00:00:00 2001 From: Benjamin Barenblat Date: Sun, 21 Dec 2014 23:03:39 -0600 Subject: Makefile: Don’t warn about C++98 compatibility issues MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. --- Makefile.am | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 -- cgit v1.2.3