mirror of
https://codeberg.org/comaps/comaps
synced 2026-01-07 21:13:55 +00:00
committed by
Konstantin Pastbin
parent
a28d5d15ce
commit
2aaf37e9ee
@@ -35,7 +35,7 @@ bool EndsInAcronymOrNum(strings::UniString const & myUniStr)
|
||||
|
||||
bool allUppercaseNum = true;
|
||||
strings::UniString lowerStr = strings::MakeLowerCase(myUniStr);
|
||||
for (int i = myUniStr.size() - 1; i > 0; i--)
|
||||
for (long i = myUniStr.size() - 1; i > 0; i--)
|
||||
{
|
||||
// if we've reached a space, we're done here
|
||||
if (myUniStr[i] == ' ')
|
||||
|
||||
Reference in New Issue
Block a user