From 934e0208bf4f923ad29b7ea9960f070d1687c458 Mon Sep 17 00:00:00 2001 From: Arkshine Date: Mon, 1 Jun 2015 18:52:41 +0200 Subject: [PATCH] Fix a clang-3.6 compilation issue --- AMBuildScript | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/AMBuildScript b/AMBuildScript index d53abb4c..dec0d098 100644 --- a/AMBuildScript +++ b/AMBuildScript @@ -162,7 +162,9 @@ class AMXXConfig(object): else: cfg.cxxflags += ['-Wno-deprecated'] cfg.cflags += ['-Wno-sometimes-uninitialized'] - + if cxx.version >= '3.6': + cfg.cxxflags += ['-Wno-inconsistent-missing-override'] + if have_gcc: cfg.cflags += ['-Wno-parentheses'] elif have_clang: