Skip to content

Commit

Permalink
fix: ignore gnu-zero-variadic-macro-arguments warning
Browse files Browse the repository at this point in the history
  • Loading branch information
iWas-Coder committed May 8, 2024
1 parent aaa13d6 commit 381400b
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -177,14 +177,15 @@ define LUA_CFLAGS
$(MACOS_SPECIFIC_CFLAGS_OPTS)
endef
define CFLAGS
-std=gnu11 \
-Wall \
-Wextra \
-pedantic \
-Werror \
$(DEBUG_SYM_OPTS) \
$(RELEASE_OPTS) \
$(MACOS_SPECIFIC_CFLAGS_OPTS)
-std=gnu11 \
-Wall \
-Wextra \
-pedantic \
-Werror \
$(DEBUG_SYM_OPTS) \
$(RELEASE_OPTS) \
$(MACOS_SPECIFIC_CFLAGS_OPTS) \
-Wno-gnu-zero-variadic-macro-arguments
endef
define TEST_CFLAGS
-std=c99 \
Expand Down

0 comments on commit 381400b

Please sign in to comment.