From cae015b61589187ff3df94c791d5364e526aee3d Mon Sep 17 00:00:00 2001
From: Mark Olesen <Mark.Olesen@Germany>
Date: Fri, 18 Feb 2011 17:26:54 +0100
Subject: [PATCH] COMP: clang++ -Woverloaded-virtual -> spurious warnings? 
 disable for now

- this behaviour changed in clang 2.9 between trunk 122348 and trunk 125662
---
 wmake/rules/linux64Clang/c++ | 3 ++-
 wmake/rules/linuxClang/c++   | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/wmake/rules/linux64Clang/c++ b/wmake/rules/linux64Clang/c++
index 11efc0c69bd..0acf5ff38f1 100644
--- a/wmake/rules/linux64Clang/c++
+++ b/wmake/rules/linux64Clang/c++
@@ -1,6 +1,7 @@
 .SUFFIXES: .C .cxx .cc .cpp
 
-c++WARN     = -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor
+# -Woverloaded-virtual may produce spurious warnings, disable for now
+c++WARN     = -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -Wno-overloaded-virtual
 
 CC          = clang++ -m64
 
diff --git a/wmake/rules/linuxClang/c++ b/wmake/rules/linuxClang/c++
index eec5f2c0811..5623184ed5a 100644
--- a/wmake/rules/linuxClang/c++
+++ b/wmake/rules/linuxClang/c++
@@ -1,6 +1,7 @@
 .SUFFIXES: .C .cxx .cc .cpp
 
-c++WARN     = -Wall -Wextra -Wno-unused-parameter -Wold-style-cast
+# -Woverloaded-virtual may produce spurious warnings, disable for now
+c++WARN     = -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -Wno-overloaded-virtual
 
 CC          = clang++ -m32
 
-- 
GitLab