From ab7e3c1d320813af7dd29b4eda2c780df232bf9a Mon Sep 17 00:00:00 2001 From: Bob Polis Date: Thu, 5 Oct 2023 16:40:51 +0200 Subject: [PATCH] Add -Wno-unused-parameter --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index a5bed66..411846d 100644 --- a/Makefile +++ b/Makefile @@ -21,9 +21,9 @@ CXX ?= g++ RM := /bin/rm -rf INSTALL := /usr/bin/install -c -CXXFLAGS += -Wshadow -Wall -Wpedantic -Wextra -std=c++17 +CXXFLAGS += -Wshadow -Wall -Wpedantic -Wextra -Wno-unused-parameter -g3 -std=c++17 ifeq ($(DEBUG),1) - CXXFLAGS += -g3 -D DEBUG -O0 + CXXFLAGS += -D DEBUG -O0 CONFIG := debug else CXXFLAGS += -D NDEBUG -O3