From 42eb69f46f7950862cd175b0a36f4fa531429ba8 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 4 Feb 2020 22:06:51 +0100 Subject: [PATCH] test/meson.build: restore -Wno-missing-declarations for GTest This is still needed for GTest 1.8.0 (Travis / Ubuntu Bionic). --- test/meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/test/meson.build b/test/meson.build index 5818da55d..4e3fbab49 100644 --- a/test/meson.build +++ b/test/meson.build @@ -6,6 +6,7 @@ if compiler.get_id() == 'gcc' gtest_compile_args += [ '-Wno-suggest-attribute=format', '-Wno-suggest-attribute=noreturn', + '-Wno-missing-declarations', ] endif