diff options
| author | Lioncash <mathew1800@gmail.com> | 2016-08-07 13:04:02 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2016-08-07 13:04:05 -0400 |
| commit | fbc0aaf79672cd20c580a28ba765e4a07c2c8c67 (patch) | |
| tree | dc5f19efd179542a52bc31a3ceac8f43fa8bb85f /Source/Core | |
| parent | e01c143379cac68dccdcb00db195b218e500b1c8 (diff) | |
MemoryUtil: Remove unimplemented/unused functions
GuardMemoryMake/GuardMemoryUnmake are unimplemented prototypes.
GetPageSize is an unused function.
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/Common/MemoryUtil.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/Source/Core/Common/MemoryUtil.h b/Source/Core/Common/MemoryUtil.h index 56ef604def..fa41da297c 100644 --- a/Source/Core/Common/MemoryUtil.h +++ b/Source/Core/Common/MemoryUtil.h @@ -21,12 +21,4 @@ void UnWriteProtectMemory(void* ptr, size_t size, bool allowExecute = false); std::string MemUsage(); size_t MemPhysical(); -void GuardMemoryMake(void* ptr, size_t size); -void GuardMemoryUnmake(void* ptr, size_t size); - -inline int GetPageSize() -{ - return 4096; -} - } // namespace Common |
