From 76bdb4076277cda0e68e1d80cdf715020eab5a7a Mon Sep 17 00:00:00 2001 From: Pavel Solodovnikov Date: Wed, 24 May 2017 22:51:46 +0300 Subject: Change std::basic_string to std::string --- Source/cmSystemTools.cxx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx index 8978e18..9f9cc6f 100644 --- a/Source/cmSystemTools.cxx +++ b/Source/cmSystemTools.cxx @@ -348,12 +348,12 @@ bool cmSystemTools::IsInternallyOn(const char* val) if (!val) { return false; } - std::basic_string v = val; + std::string v = val; if (v.size() > 4) { return false; } - for (std::basic_string::iterator c = v.begin(); c != v.end(); c++) { + for (std::string::iterator c = v.begin(); c != v.end(); c++) { *c = static_cast(toupper(*c)); } return v == "I_ON"; @@ -368,7 +368,7 @@ bool cmSystemTools::IsOn(const char* val) if (len > 4) { return false; } - std::basic_string v(val, len); + std::string v(val, len); static std::set onValues; if (onValues.empty()) { @@ -378,7 +378,7 @@ bool cmSystemTools::IsOn(const char* val) onValues.insert("TRUE"); onValues.insert("Y"); } - for (std::basic_string::iterator c = v.begin(); c != v.end(); c++) { + for (std::string::iterator c = v.begin(); c != v.end(); c++) { *c = static_cast(toupper(*c)); } return (onValues.count(v) > 0); @@ -413,8 +413,8 @@ bool cmSystemTools::IsOff(const char* val) offValues.insert("IGNORE"); } // Try and avoid toupper(). - std::basic_string v(val, len); - for (std::basic_string::iterator c = v.begin(); c != v.end(); c++) { + std::string v(val, len); + for (std::string::iterator c = v.begin(); c != v.end(); c++) { *c = static_cast(toupper(*c)); } return (offValues.count(v) > 0); -- cgit v0.12