Removing std:: from std::to_string and include for boost/lexical_cast

This commit is contained in:
Matías Aereal Aeón
2018-08-08 11:26:30 -03:00
parent 7dae58cbcc
commit e902ce1aa0
13 changed files with 31 additions and 35 deletions
+1 -1
View File
@@ -31,7 +31,7 @@ string NameDispenser::newName(string const& _prefix)
while (name.empty() || m_usedNames.count(name))
{
suffix++;
name = _prefix + "_" + std::to_string(suffix);
name = _prefix + "_" + to_string(suffix);
}
m_usedNames.insert(name);
return name;