From 7d24276bb23afd48c123167f703cbb7beea7d759 Mon Sep 17 00:00:00 2001 From: "Derek \"Turtle\" Roe" Date: Tue, 16 Mar 2021 17:52:14 -0500 Subject: [PATCH] Update MemoryManagement.cpp Add newline and fix title case and spacing --- Source/Common/MemoryManagement.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/Common/MemoryManagement.cpp b/Source/Common/MemoryManagement.cpp index be8a54ef5..473685599 100644 --- a/Source/Common/MemoryManagement.cpp +++ b/Source/Common/MemoryManagement.cpp @@ -66,7 +66,7 @@ void* AllocateAddressSpace(size_t size, void * base_address) bool FreeAddressSpace(void* addr, size_t size) { #ifdef _WIN32 - size = 0; //unused + size = 0; // Unused return VirtualFree(addr, 0, MEM_RELEASE) != 0; #else msync(addr, size, MS_SYNC); @@ -96,7 +96,7 @@ bool DecommitMemory(void* addr, size_t size) #ifdef _WIN32 return VirtualFree((void*)addr, size, MEM_DECOMMIT) != 0; #else - // instead of unmapping the address, we're just gonna trick + // Instead of unmapping the address, we're just gonna trick // the TLB to mark this as a new mapped area which, due to // demand paging, will not be committed until used. @@ -129,4 +129,4 @@ bool ProtectMemory(void* addr, size_t size, MEM_PROTECTION memProtection, MEM_PR #else return mprotect(addr, size, OsMemProtection) == 0; #endif -} \ No newline at end of file +}