Skip to content
This repository has been archived by the owner on Sep 2, 2018. It is now read-only.

Commit

Permalink
silence Clang's missing field initializers warning
Browse files Browse the repository at this point in the history
  • Loading branch information
thestinger committed Nov 12, 2015
1 parent f61c14f commit dbcaca7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Makefile
Expand Up @@ -10,7 +10,8 @@ LDFLAGS += -pie -Wl,--as-needed,-z,relro,-z,now
ifeq ($(CC), clang)
CFLAGS += -Weverything \
-Wno-padded \
-Wno-disabled-macro-expansion
-Wno-disabled-macro-expansion \
-Wno-missing-field-initializers
else
CFLAGS += -Wall -Wextra -Wshadow -Wsign-conversion
endif
Expand Down

0 comments on commit dbcaca7

Please sign in to comment.