19 lines
643 B
Diff
19 lines
643 B
Diff
--- a/External/FEXCore/Source/Utils/Allocator/64BitAllocator.cpp
|
|
+++ b/External/FEXCore/Source/Utils/Allocator/64BitAllocator.cpp
|
|
@@ -23,7 +23,6 @@
|
|
#include <utility>
|
|
|
|
static constexpr uint64_t PAGE_SHIFT = 12;
|
|
-static constexpr uint64_t PAGE_MASK = (1 << PAGE_SHIFT) - 1;
|
|
|
|
namespace Alloc::OSAllocator {
|
|
class OSAllocator_64Bit final : public Alloc::HostAllocator {
|
|
@@ -37,7 +36,6 @@
|
|
int Munmap(void *addr, size_t length) override;
|
|
|
|
private:
|
|
- constexpr static uint64_t PAGE_SIZE = 4096;
|
|
// Upper bound is the maximum virtual address space of the host processor
|
|
uintptr_t UPPER_BOUND = (1ULL << 57);
|
|
|