- Eliminated text.cpp upperCase(), as it was not UTF8-safe, and is no longer
  used.
This commit is contained in:
Paul Beckingham 2015-02-17 10:44:31 -05:00
parent 693fe9b8fd
commit 520067f522
4 changed files with 3 additions and 14 deletions

View file

@ -424,14 +424,6 @@ std::string lowerCase (const std::string& input)
return output;
}
////////////////////////////////////////////////////////////////////////////////
std::string upperCase (const std::string& input)
{
std::string output = input;
std::transform (output.begin (), output.end (), output.begin (), toupper);
return output;
}
////////////////////////////////////////////////////////////////////////////////
std::string ucFirst (const std::string& input)
{