From 9ae1bff42701264b48b541ec3404d6d83726a002 Mon Sep 17 00:00:00 2001 From: Justin Traglia Date: Mon, 4 Mar 2024 10:19:23 -0600 Subject: [PATCH] Remove -Wno-missing-braces flag --- src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index 7bc6329..b6c75ad 100644 --- a/src/Makefile +++ b/src/Makefile @@ -20,7 +20,7 @@ ifeq ($(PLATFORM),Darwin) endif # The base compiler flags. More can be added on command line. -CFLAGS += -I../inc -O2 -Wall -Wextra -Wno-missing-braces +CFLAGS += -I../inc -O2 -Wall -Wextra # Cross-platform compilation settings. ifeq ($(PLATFORM),Windows)