Removed uses of raw c-string manipulation functions.

This commit is contained in:
archshift 2014-10-23 21:17:01 -07:00
parent ce8390ac03
commit 7fa4dbd0c6
4 changed files with 10 additions and 21 deletions

View file

@ -54,7 +54,6 @@ std::string ThousandSeparate(I value, int spaces = 0)
return oss.str();
}
std::string StringFromInt(int value);
std::string StringFromBool(bool value);
bool TryParse(const std::string &str, bool *output);