Remove IntToStr
str duplicates this functionality. Also add unit test.
This commit is contained in:
@ -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);
|
||||
|
||||
Reference in New Issue
Block a user