summaryrefslogtreecommitdiff
path: root/config.lib
diff options
context:
space:
mode:
Diffstat (limited to 'config.lib')
-rw-r--r--config.lib3
1 files changed, 2 insertions, 1 deletions
diff --git a/config.lib b/config.lib
index cd0b459f5..1afbdb931 100644
--- a/config.lib
+++ b/config.lib
@@ -1134,7 +1134,8 @@ make_compiler_cflags() {
if [ $cc_version -ge 110 ]; then
# vec report defaults to telling where it did loop vectorisation, which is not very important
- flags="$flags -vec-report=0 -wd873"
+ # it also complains about not fully overriding virtual function
+ flags="$flags -vec-report=0 -wd873 -wd654"
# Use c++0x mode so static_assert() is available
cxxflags="$cxxflags -std=c++0x"