Bug Fix - lower case priorities
- Changed a call to isupper to islower. This was preventing the internal modification to upper case. - Updated ChangeLog accordingly.
This commit is contained in:
@@ -296,7 +296,7 @@ std::string upperCase (const std::string& input)
|
||||
{
|
||||
std::string output = input;
|
||||
for (int i = 0; i < (int) input.length (); ++i)
|
||||
if (::isupper (input[i]))
|
||||
if (::islower (input[i]))
|
||||
output[i] = ::toupper (input[i]);
|
||||
|
||||
return output;
|
||||
|
||||
Reference in New Issue
Block a user