commit b4b5838b56003120560615c6580620fe6031bc27 parent 4c71d42fbc0a66e1c5242593b83839f4b98ae4f9 Author: Martin Kloeckner <mjkloeckner@gmail.com> Date: Mon, 17 Jun 2024 19:57:19 -0300 remove `-Wshadow` compiler flag Diffstat:
| M | Makefile | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile @@ -1,5 +1,5 @@ CC := g++ -CFLAGS := -Wall -Wshadow -pedantic -ansi -std=c++98 -O3 +CFLAGS := -Wall -pedantic -ansi -std=c++98 -O3 SRCS := $(wildcard *.cpp) LIBS := $(wildcard *.h)
