1
0
mirror of https://github.com/ThrowTheSwitch/Unity.git synced 2026-01-23 00:15:58 +01:00

Fix reserved-identifier errors

These are reserved by the standard
This commit is contained in:
Ross Smyth
2025-07-02 21:27:10 -04:00
parent 1638627cb5
commit 8bac36463d
2 changed files with 4 additions and 4 deletions

View File

@@ -12,7 +12,7 @@ ifeq ($(findstring clang, $(CC)), clang)
E = -Weverything
CFLAGS += $E -Wno-unknown-warning-option -Wno-missing-prototypes
CFLAGS += -Wno-unused-macros -Wno-padded -Wno-missing-noreturn
CFLAGS += -Wno-unsafe-buffer-usage -Wno-reserved-identifier
CFLAGS += -Wno-unsafe-buffer-usage
endif
CFLAGS += -std=c99 -pedantic -Wall -Wextra -Werror
#CFLAGS += -Wconversion #disabled because if falsely complains about the isinf and isnan macros