C++11-combat: hopefully the last std::to_string to replace.

This commit is contained in:
Kim Kulling
2016-10-15 21:45:58 +02:00
parent 46d78f57d5
commit 5cb4df80ad
4 changed files with 12 additions and 6 deletions

View File

@@ -300,7 +300,7 @@ void ColladaParser::ReadAnimationClipLibrary()
else if (indexID >= 0)
animName = mReader->getAttributeValue(indexID);
else
animName = std::string("animation_") + std::to_string(mAnimationClipLibrary.size());
animName = std::string("animation_") + to_string(mAnimationClipLibrary.size());
std::pair<std::string, std::vector<std::string> > clip;