Ignore padding and float to double implicit warning.

This commit is contained in:
nah
2016-09-04 09:55:49 -05:00
parent 906447f13f
commit 65f0febf03

View File

@ -3,6 +3,7 @@ ifeq ($(shell uname -s), Darwin)
CC = clang
CFLAGS += -std=c99 -pedantic -Wall -Weverything -Werror
CFLAGS += -Wno-unknown-warning-option -Wno-switch-enum
CFLAGS += -Wno-padded -Wno-double-promotion
endif
ifeq ($(shell uname -s), Linux)
CFLAGS += -std=c99 -pedantic -Wall -Wextra -Werror