1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Projucer: Removed a workaround for setting the C++ language standard to C++17 in the MSVC exporter

This commit is contained in:
ed 2019-09-09 10:09:14 +01:00
parent 2aed7b58fa
commit e7273fa0a1

View file

@ -570,8 +570,6 @@ public:
if (cppStandard == "11") // VS doesn't support the C++11 flag so we have to bump it to C++14
cppStandard = "14";
else if (cppStandard == "17") // nor does it support the C++17 flag, so we'll just use latest for now until it's added
cppStandard = "latest";
cl->createNewChildElement ("LanguageStandard")->addTextElement ("stdcpp" + cppStandard);
}