From 633ac64641e86af4797e3bfb0e0db148215f2cc6 Mon Sep 17 00:00:00 2001 From: Clownacy Date: Tue, 8 Sep 2020 03:24:55 +0100 Subject: [PATCH] Go back to C++98 Now that `cute_spritebatch.h` is gone, there's only one other bit of C++11 in the project that I can think of. --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 74d3d478..a5fecdda 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -451,9 +451,9 @@ set_target_properties(CSE2 PROPERTIES C_EXTENSIONS OFF ) -# Force strict C++11 +# Force strict C++98 set_target_properties(CSE2 PROPERTIES - CXX_STANDARD 11 + CXX_STANDARD 98 CXX_STANDARD_REQUIRED ON CXX_EXTENSIONS OFF )