From e629b9919ef6bc557bdb1f3badd3c8b117c699c3 Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Thu, 5 Mar 2026 19:59:59 +0000 Subject: [PATCH] Makefile: added -Wswitch-enum to warning flags --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index cb2d18c..bfe066f 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ OUT=$(DIST)/alisp.out TEST=$(DIST)/test.out LDFLAGS= -GFLAGS=-Wall -Wextra -Wpedantic -Werror -std=c23 -I./include/ +GFLAGS=-Wall -Wextra -Wswitch-enum -Wpedantic -Werror -std=c23 -I./include/ DFLAGS=-ggdb -fsanitize=address -fsanitize=undefined RFLAGS=-O3