Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Primitives/interface/MemoryAllocator.h
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ struct IMemoryAllocatorMethods
{
void* (*Allocate) (struct IMemoryAllocator*, size_t Size, const Char* dbgDescription, const char* dbgFileName, const Int32 dbgLineNumber);
void (*Free) (struct IMemoryAllocator*, void* Ptr);
void* (*AllocateAligned)(struct IMemoryAllocator*, size_t Size, size_t Alignment, const Char* dbgDescription, const char* dbgFileName, const Int32 dbgLineNumber)
void* (*AllocateAligned)(struct IMemoryAllocator*, size_t Size, size_t Alignment, const Char* dbgDescription, const char* dbgFileName, const Int32 dbgLineNumber);
void (*FreeAligned) (struct IMemoryAllocator*, void* Ptr);
};

Expand Down
Loading