Skip to content

Commit

Permalink
ci/build Increase warning level
Browse files Browse the repository at this point in the history
Detect unused macros with the -Wunused-macros flag.
  • Loading branch information
jlucovsky committed Oct 11, 2024
1 parent 58556b7 commit c3c2e71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ concurrency:
permissions: read-all

env:
DEFAULT_CFLAGS: "-Wall -Wextra -Werror -Wno-unused-parameter -Wno-unused-function"
DEFAULT_CFLAGS: "-Wall -Wextra -Werror -Wno-unused-parameter -Wno-unused-function -Wunused-macros"

# Apt sometimes likes to ask for user input, this will prevent that.
DEBIAN_FRONTEND: "noninteractive"
Expand Down

0 comments on commit c3c2e71

Please sign in to comment.