Remove IntToStr

str duplicates this functionality.  Also add unit test.
This commit is contained in:
Andrew Gaul
2014-11-03 21:45:48 -08:00
parent 2e344bb48f
commit 0ea88a73c7
4 changed files with 14 additions and 12 deletions

View File

@ -85,13 +85,6 @@ string lower(string s)
return s;
}
string IntToStr(int n)
{
stringstream result;
result << n;
return result.str();
}
string trim_left(const string &s, const string &t /* = SPACES */)
{
string d(s);