From 69d56b551a3a0dfd60a4f5985a356bc436794333 Mon Sep 17 00:00:00 2001 From: firewave Date: Mon, 30 Sep 2024 13:11:49 +0200 Subject: [PATCH] test/cli/runtests.sh: disabled `-Wimplicit-function-declaration` to avoid warnings on `macos-13` for now --- test/cfg/runtests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/cfg/runtests.sh b/test/cfg/runtests.sh index 3f2524c0e11..1ff731abe16 100755 --- a/test/cfg/runtests.sh +++ b/test/cfg/runtests.sh @@ -44,7 +44,7 @@ CPPCHECK_OPT=( CXX=g++ CXX_OPT=("-fsyntax-only" "-w" "-std=c++2a") CC=gcc -CC_OPT=("-fsyntax-only" "-w" "-Wimplicit-function-declaration" "-std=c11") +CC_OPT=("-fsyntax-only" "-w" "-Wno-implicit-function-declaration" "-std=c11") # TODO: remove -Wno-implicit-function-declaration when warnings are fixed on MacOS function get_pkg_config_cflags { # TODO: get rid of the error enabling/disabling?