From f0216788525ce8418d4fca4aa9bb540210e08e5b Mon Sep 17 00:00:00 2001 From: saundersp Date: Tue, 8 Jul 2025 02:41:38 +0200 Subject: [PATCH] Makefile : changed pedantic flag to ISO Wpedantic --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index aa447e1..b211123 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ OBJ_DIR := bin SRC_DIR := . #CFLAGS := -Og -g -rdynamic -pg -ggdb3 -D__DEBUG CFLAGS := -O4 -CFLAGS := $(CFLAGS) -Wall -Werror -Wextra -Wno-error=unused-function -pedantic +CFLAGS := $(CFLAGS) -Wall -Werror -Wextra -Wno-error=unused-function -Wpedantic EXEC := $(OBJ_DIR)/data SRC := $(wildcard $(SRC_DIR)/*.cpp) HEADER := $(wildcard $(SRC_DIR)/*.hpp)