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
+1 -1
View File
@@ -98,7 +98,7 @@ struct MenuRowDef
{
for ( int i = low; i <= high; i++ )
{
choices.push_back(IntToString(i).c_str());
choices.push_back(std::to_string(i));
}
}