uint32 -> size_t

Signed-off-by: Chris Burel <burelc@amazon.com>
This commit is contained in:
Chris Burel
2021-05-24 12:04:06 -07:00
parent 88a9a4fb5d
commit 404ab51439
2 changed files with 3 additions and 3 deletions
@@ -46,7 +46,7 @@ namespace MCore
AzFramework::StringFunc::TrimWhiteSpace(nameWithoutLastDigits, false /* leading */, true /* trailing */);
// generate the unique name
uint32 nameIndex = 0;
size_t nameIndex = 0;
AZStd::string uniqueName = nameWithoutLastDigits + "0";
while (validationFunction(uniqueName) == false)
{