From c59b7050d94fe134601290cd36d03df63d0ae25b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Lam?= Date: Sun, 18 Sep 2016 23:27:10 +0200 Subject: [PATCH] MemoryUtil: Fix formatting clang-format really *wants* the two empty lines to be removed; otherwise, it will always flag MemoryUtil as needing formatting changes which is an annoyance when it is used as a git filter driver. --- Source/Core/Common/MemoryUtil.cpp | 1 - Source/Core/Common/MemoryUtil.h | 1 - 2 files changed, 2 deletions(-) diff --git a/Source/Core/Common/MemoryUtil.cpp b/Source/Core/Common/MemoryUtil.cpp index ce0d38cbcb..0c079a15b3 100644 --- a/Source/Core/Common/MemoryUtil.cpp +++ b/Source/Core/Common/MemoryUtil.cpp @@ -33,7 +33,6 @@ namespace Common { - #if !defined(_WIN32) #include static uintptr_t RoundPage(uintptr_t addr) diff --git a/Source/Core/Common/MemoryUtil.h b/Source/Core/Common/MemoryUtil.h index fa41da297c..1e2402f5d2 100644 --- a/Source/Core/Common/MemoryUtil.h +++ b/Source/Core/Common/MemoryUtil.h @@ -9,7 +9,6 @@ namespace Common { - void* AllocateExecutableMemory(size_t size, bool low = true); void* AllocateMemoryPages(size_t size); void FreeMemoryPages(void* ptr, size_t size);