Remove the IntToString function, use std.

...this seriously didn't belong in Rage.
This commit is contained in:
Jason Felds
2013-05-04 11:22:10 -04:00
parent 07b9fb6da5
commit 490327cf55
4 changed files with 268 additions and 280 deletions
-7
View File
@@ -1758,13 +1758,6 @@ int StringToInt( const RString &sString )
return ret;
}
RString IntToString( const int &iNum )
{
stringstream ss;
ss << iNum;
return ss.str();
}
float StringToFloat( const RString &sString )
{
float ret = strtof( sString, nullptr );