From fd25cf8140457ed0694f9b2ea29d551e34b49d15 Mon Sep 17 00:00:00 2001 From: Roelf-Jilling Date: Wed, 14 Nov 2018 22:21:17 +0100 Subject: [PATCH] Suppress clang warning on tests (missing-prototypes) (#741) --- tests/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 8781fad..0267ce6 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -60,6 +60,7 @@ target_compile_options(gsl_tests_config INTERFACE $<$: -Wno-c++98-compat -Wno-c++98-compat-pedantic + -Wno-missing-prototypes -Wno-undef > ) @@ -158,6 +159,7 @@ target_compile_options(gsl_tests_config_noexcept INTERFACE $<$: -Wno-c++98-compat -Wno-c++98-compat-pedantic + -Wno-missing-prototypes -Wno-undef > )