diff options
author | Michael Scire <SciresM@gmail.com> | 2019-07-07 13:02:41 -0700 |
---|---|---|
committer | Michael Scire <SciresM@gmail.com> | 2019-07-07 13:02:41 -0700 |
commit | ca6f08e3b1df011075bf4564bbb61d4cdf9a7737 (patch) | |
tree | edb82147ad613192ab283ae9ed1b00ea49cef9a2 | |
parent | ce64a9fab9e6f015a4d2b332abcb7043914549d4 (diff) |
Remove unused member function declaration
-rw-r--r-- | src/core/hle/kernel/vm_manager.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/core/hle/kernel/vm_manager.h b/src/core/hle/kernel/vm_manager.h index 5b27548aa..0aecb7499 100644 --- a/src/core/hle/kernel/vm_manager.h +++ b/src/core/hle/kernel/vm_manager.h @@ -303,15 +303,6 @@ struct VirtualMemoryArea { PAddr paddr = 0; Common::MemoryHookPointer mmio_handler = nullptr; - /// If the address lies within this VMA, returns the size left before the - /// end of this VMA. If the given address doesn't lie within the VMA, then - /// an empty optional value is returned. - /// - /// For example, given a VMA 100 bytes long. If '10' was given as the - /// start address, then this would return 90. - /// - std::optional<u64> SizeRemainingFromAddress(VAddr address) const; - /// Tests if this area can be merged to the right with `next`. bool CanBeMergedWith(const VirtualMemoryArea& next) const; }; |