This commit is contained in:
Kelvin Sherlock 2017-01-20 22:47:45 -05:00
parent b29b208b06
commit e9383cfcdc
1 changed files with 1 additions and 1 deletions

View File

@ -411,7 +411,7 @@ void simplify() {
*/
std::string &upper_case(std::string &s) {
std::transform(s.begin(), s.end(), s.begin(), std::toupper);
std::transform(s.begin(), s.end(), s.begin(), toupper);
return s;
}