shithub: cstory

Download patch

ref: 44762363cfe8b5b185d7131bd50fb409b4a5e574
parent: cc4a58fbac677da7f786e99e3cb33764359f6621
author: Clownacy <[email protected]>
date: Sat Mar 14 19:58:27 EDT 2020

Bump required C++ standard to C++11

cute_spritebatch.h uses C99/C++11 features.

--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -347,9 +347,9 @@
 	C_EXTENSIONS OFF
 )
 
-# Force strict C++98
+# Force strict C++11
 set_target_properties(CSE2 PROPERTIES
-	CXX_STANDARD 98
+	CXX_STANDARD 11
 	CXX_STANDARD_REQUIRED ON
 	CXX_EXTENSIONS OFF
 )