From 9d760dc746cd8235deb55f376616eb5a431fa843 Mon Sep 17 00:00:00 2001 From: Philippe Teuwen Date: Mon, 28 Feb 2022 15:36:03 +0100 Subject: [PATCH] Ignore brace warnings on Apple clang --- Makefile.defs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile.defs b/Makefile.defs index 06396d3d0..851567ea2 100644 --- a/Makefile.defs +++ b/Makefile.defs @@ -119,6 +119,8 @@ endif ifeq ($(platform),Darwin) # their readline has strict-prototype issues DEFCFLAGS += -Wno-strict-prototypes + # some warnings about braced initializers on structs we want to ignore + DEFCFLAGS += -Wno-missing-braces else DEFCFLAGS += -Wstrict-prototypes endif