diff options
| author | Martin Ridgers <[email protected]> | 2022-01-05 12:13:48 +0100 |
|---|---|---|
| committer | Martin Ridgers <[email protected]> | 2022-01-05 15:15:47 +0100 |
| commit | d0686384ae2362f3e47597c939db40f50f4ba1fc (patch) | |
| tree | 7bfc056e36d19989323ea5689450e8d47d5fe904 /zencore/include | |
| parent | Cleaned up some unnecessary comments (diff) | |
| download | zen-d0686384ae2362f3e47597c939db40f50f4ba1fc.tar.xz zen-d0686384ae2362f3e47597c939db40f50f4ba1fc.zip | |
Function parameter case consistency with the rest of the code base
Diffstat (limited to 'zencore/include')
| -rw-r--r-- | zencore/include/zencore/memory.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/zencore/include/zencore/memory.h b/zencore/include/zencore/memory.h index df53d0c60..ef4d3bdbd 100644 --- a/zencore/include/zencore/memory.h +++ b/zencore/include/zencore/memory.h @@ -22,8 +22,8 @@ public: ZENCORE_API MemoryArena(); ZENCORE_API ~MemoryArena(); - ZENCORE_API void* Alloc(size_t size, size_t alignment); - ZENCORE_API void Free(void* ptr); + ZENCORE_API void* Alloc(size_t Size, size_t Alignment); + ZENCORE_API void Free(void* Ptr); private: }; @@ -31,8 +31,8 @@ private: class Memory { public: - ZENCORE_API static void* Alloc(size_t size, size_t alignment = sizeof(void*)); - ZENCORE_API static void Free(void* ptr); + ZENCORE_API static void* Alloc(size_t Size, size_t Alignment = sizeof(void*)); + ZENCORE_API static void Free(void* Ptr); }; /** Allocator which claims fixed-size blocks from the underlying allocator. |