1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 13:28:11 +00:00

Kernel: Remove MemoryManager::region_tree() accessor

Let's not have a way to grab at the RegionTree from outside of MM.
This commit is contained in:
Andreas Kling 2022-04-05 12:41:46 +02:00
parent f8d798b667
commit a3db0ab14f
2 changed files with 1 additions and 3 deletions

View file

@ -248,8 +248,6 @@ public:
IterationDecision for_each_physical_memory_range(Function<IterationDecision(PhysicalMemoryRange const&)>);
auto& region_tree() { return m_region_tree; }
private:
MemoryManager();
~MemoryManager();