Skip to content

Commit 44ed712

Browse files
authored
Add missing semicolon in IMemoryAllocatorMethods (#695)
1 parent 5ca848d commit 44ed712

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Primitives/interface/MemoryAllocator.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ struct IMemoryAllocatorMethods
6363
{
6464
void* (*Allocate) (struct IMemoryAllocator*, size_t Size, const Char* dbgDescription, const char* dbgFileName, const Int32 dbgLineNumber);
6565
void (*Free) (struct IMemoryAllocator*, void* Ptr);
66-
void* (*AllocateAligned)(struct IMemoryAllocator*, size_t Size, size_t Alignment, const Char* dbgDescription, const char* dbgFileName, const Int32 dbgLineNumber)
66+
void* (*AllocateAligned)(struct IMemoryAllocator*, size_t Size, size_t Alignment, const Char* dbgDescription, const char* dbgFileName, const Int32 dbgLineNumber);
6767
void (*FreeAligned) (struct IMemoryAllocator*, void* Ptr);
6868
};
6969

0 commit comments

Comments
 (0)