diff --git a/Source/Engine/Core/Memory/Memory.h b/Source/Engine/Core/Memory/Memory.h
index a35929ed2..96acc0746 100644
--- a/Source/Engine/Core/Memory/Memory.h
+++ b/Source/Engine/Core/Memory/Memory.h
@@ -44,7 +44,7 @@ namespace AllocatorExt
/// The size of the new allocation (in bytes).
/// The memory alignment (in bytes). Must be an integer power of 2.
/// The pointer to the allocated chunk of the memory. The pointer is a multiple of alignment.
- inline void* ReallocWithAlignment(void* ptr, uint64 newSize, uint64 alignment)
+ inline void* ReallocAligned(void* ptr, uint64 newSize, uint64 alignment)
{
if (newSize == 0)
{