Skip to content

Commit

Permalink
test/cli/runtests.sh: disabled -Wimplicit-function-declaration to a…
Browse files Browse the repository at this point in the history
…void warnings on `macos-13` for now
  • Loading branch information
firewave committed Sep 30, 2024
1 parent c6cbc1c commit 69d56b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/cfg/runtests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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?
Expand Down

0 comments on commit 69d56b5

Please sign in to comment.