From de1506033fbc0f938b7d244aace91ad283ac15e5 Mon Sep 17 00:00:00 2001 From: Mylloon Date: Sat, 2 Apr 2022 16:46:25 +0200 Subject: [PATCH] =?UTF-8?q?Suppression=20de=20-fanalyzer=20car=20est=20tro?= =?UTF-8?q?p=20bugg=C3=A9=20sur=20g++11=20(https://gcc.gnu.org/bugzilla/sh?= =?UTF-8?q?ow=5Fbug.cgi=3Fid=3D94355)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index a77b523..ee4c199 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,5 @@ CCPP = g++ -CFLAGS = -I. -Wall -Wextra -fanalyzer -O3 --std=c++17 -CFLAGS2 = #-Wno-unused-variable -Wno-unused-but-set-variable -Wno-unused-parameter +CFLAGS = -I. -Wall -Wextra -O3 --std=c++17 SOURCES = $(shell find . -name '*.cpp') OBJECTS = $(SOURCES:.cpp=.o)