From f39a4463efa9deeaa6ec1f7986964f5baad784c2 Mon Sep 17 00:00:00 2001 From: zedarider Date: Sun, 6 Nov 2016 20:28:39 +0000 Subject: constructor is now default --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 1612948..a3a4bfd 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ TARGET := bin/chess_ai SRCEXT := cpp SOURCES := $(shell find $(SRCDIR) -type f -name "*.$(SRCEXT)") OBJECTS := $(patsubst $(SRCDIR)/%,$(BUILDDIR)/%,$(SOURCES:.$(SRCEXT)=.o)) -CFLAGS := -g -Wall -Wextra -std=c++14 +CFLAGS := -g -Wall -Wextra -Wpedantic -std=c++14 LIB := INC := -I include -- cgit