Small cosmetic fix.

This commit is contained in:
Tsuda Kageyu 2015-11-24 15:45:38 +09:00
parent 477aba9465
commit 3612c2cc24

View File

@ -597,7 +597,8 @@ int String::toInt(bool *ok) const
*ok = (*ok && value > INT_MIN && value < INT_MAX);
}
return static_cast<int>(value);}
return static_cast<int>(value);
}
String String::stripWhiteSpace() const
{