Merge pull request #800 from pkholland/master

Can't add integer to string pointer
pull/846/head
Kim Kulling 2016-04-01 10:01:23 +02:00
commit d094dfc3a1
1 changed files with 1 additions and 1 deletions

View File

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