Fixes Linux builds

Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
Esteban Papp
2022-01-05 14:23:32 -08:00
parent ddbcc68106
commit af6af93dff
2 changed files with 3 additions and 2 deletions
@@ -133,13 +133,13 @@ namespace AZ
BestFitExternalMapSchema::size_type BestFitExternalMapSchema::Resize(pointer_type, size_type)
{
AZ_Assert(false, AZ_FUNCTION_SIGNATURE " unsupported");
AZ_Assert(false, "%s unsupported", AZ_FUNCTION_SIGNATURE);
return 0;
}
BestFitExternalMapSchema::pointer_type BestFitExternalMapSchema::ReAllocate(pointer_type, size_type, size_type)
{
AZ_Assert(false, AZ_FUNCTION_SIGNATURE " unsupported");
AZ_Assert(false, "%s unsupported", AZ_FUNCTION_SIGNATURE);
return nullptr;
}