shithub: cstory

Download patch

ref: df2620171f156ca8476e3bf7d140cb2e5ef01f27
parent: ec148c1072522c8b2c986f6fb12a4e358bbeca55
author: Clownacy <Clownacy@users.noreply.github.com>
date: Tue Feb 19 17:39:30 EST 2019

Switched to C++98

It compiles without any issues, so why not?

--- a/Makefile
+++ b/Makefile
@@ -34,7 +34,7 @@
 	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)