Fixes Linux builds
Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
@@ -20,6 +20,7 @@
|
||||
#include <AzCore/Memory/SystemAllocator.h>
|
||||
#include <AzCore/std/containers/array.h>
|
||||
#include <AzCore/std/containers/vector.h>
|
||||
#include <AzCore/std/containers/unordered_map.h>
|
||||
#include <AzCore/Utils/Utils.h>
|
||||
|
||||
#include <benchmark/benchmark.h>
|
||||
|
||||
Reference in New Issue
Block a user