From 9147d986c9510bb14f4ba593c9faa079f67037db Mon Sep 17 00:00:00 2001 From: tpoole Date: Tue, 21 Feb 2017 11:58:41 +0000 Subject: [PATCH] Removed the C++98 build option from the Projucer --- .../Source/Project Saving/jucer_ProjectExport_XCode.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/extras/Projucer/Source/Project Saving/jucer_ProjectExport_XCode.h b/extras/Projucer/Source/Project Saving/jucer_ProjectExport_XCode.h index 8a1ea8ccab..7a0179bc03 100644 --- a/extras/Projucer/Source/Project Saving/jucer_ProjectExport_XCode.h +++ b/extras/Projucer/Source/Project Saving/jucer_ProjectExport_XCode.h @@ -411,11 +411,9 @@ protected: "A comma-separated list of custom Xcode setting flags which will be appended to the list of generated flags, " "e.g. MACOSX_DEPLOYMENT_TARGET_i386 = 10.5, VALID_ARCHS = \"ppc i386 x86_64\""); - const char* cppLanguageStandardNames[] = { "Use Default", "C++98", "GNU++98", "C++11", "GNU++11", "C++14", "GNU++14", nullptr }; + const char* cppLanguageStandardNames[] = { "Use Default", "C++11", "GNU++11", "C++14", "GNU++14", nullptr }; Array cppLanguageStandardValues; cppLanguageStandardValues.add (var()); - cppLanguageStandardValues.add ("c++98"); - cppLanguageStandardValues.add ("gnu++98"); cppLanguageStandardValues.add ("c++11"); cppLanguageStandardValues.add ("gnu++11"); cppLanguageStandardValues.add ("c++14");