why did only clang spot this?

meow-7.2.2
Beq 2022-09-16 14:54:12 +01:00
parent c17e960a00
commit a22eb0ead9
1 changed files with 1 additions and 1 deletions

View File

@ -1168,7 +1168,7 @@ std::string LLLocalMeshImportDAE::getElementName(daeElement* element_current, in
// in case all else fails, fallback naming
if (result.empty())
{
result = "object_" + fallback_index;
result = "object_" + std::to_string(fallback_index);
}
return result;