From 5492304254c86f3a187d728e29afb7d43965c896 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Wed, 23 Sep 2020 15:13:10 +0200 Subject: [PATCH] meson.build: drop obsolete warning flag -Wno-noexcept-type We don't support GCC 7 anymore. --- meson.build | 5 ----- 1 file changed, 5 deletions(-) diff --git a/meson.build b/meson.build index 98318db20..8fa9dd4b3 100644 --- a/meson.build +++ b/meson.build @@ -77,11 +77,6 @@ test_cxxflags = test_common_flags + [ '-Wused-but-marked-unused', '-Wno-non-virtual-dtor', - - # work around bogus GCC7 warning "mangled name for ... will change - # in C++17 because the exception specification is part of a function - # type" - '-Wno-noexcept-type', ] if compiler.get_id() == 'clang'