From f4312e890b2c7becc9e06b293ffa27e9b64a1237 Mon Sep 17 00:00:00 2001 From: lohhiiccc Date: Mon, 20 Apr 2026 13:42:55 +0200 Subject: [PATCH] feat: add -Wshadow to compile commands --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0c32e25..a69b3a8 100644 --- a/Makefile +++ b/Makefile @@ -21,7 +21,7 @@ include sources.mk CC ?= clang CPPFLAGS ?= -std=c99 -I includes -D_POSIX_C_SOURCE=199309L -CFLAGS ?= -Wall -Wextra -Werror -pipe -Wpedantic -Wconversion +CFLAGS ?= -Wall -Wextra -Werror -pipe -Wpedantic -Wconversion -Wshadow CFLAGS_SHARED = $(CFLAGS) -fPIC LDFLAGS ?= TEST_LDFLAGS = -lcriterion