From df2620171f156ca8476e3bf7d140cb2e5ef01f27 Mon Sep 17 00:00:00 2001 From: Clownacy Date: Tue, 19 Feb 2019 22:39:30 +0000 Subject: [PATCH] Switched to C++98 It compiles without any issues, so why not? --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 610a64b1..bc694929 100644 --- a/Makefile +++ b/Makefile @@ -34,7 +34,7 @@ ifeq ($(WINDOWS), 1) LIBS += -lkernel32 endif -CXXFLAGS += -std=c++03 `sdl2-config --cflags` `pkg-config freetype2 --cflags` -MMD -MP -MF $@.d +CXXFLAGS += -std=c++98 `sdl2-config --cflags` `pkg-config freetype2 --cflags` -MMD -MP -MF $@.d LIBS += `sdl2-config --static-libs` `pkg-config freetype2 --libs` ifeq ($(STATIC), 1)