From 7b7a4dcc0c012e48d5dc5a8e5ba561cb8cbc8920 Mon Sep 17 00:00:00 2001 From: Patrick Lipka Date: Fri, 17 Dec 2021 10:25:32 +0100 Subject: [PATCH] -std=c++11 added to compile flags to solve clang warnings --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 441127b..c5ed615 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ -include config.out CXX ?= g++ -CXXFLAGS := -g -Wall -pedantic +CXXFLAGS := -std=c++11 -g -Wall -pedantic OBJFLAGS := $(CXXFLAGS) -c LDFLAGS := -lreadline