core: Resolve -Wreorder warnings

Ensures the initialization order matches the actual order that the class
member variables will be initialized in.
This commit is contained in:
Lioncash
2020-05-01 23:32:41 -04:00
parent 2476532f21
commit 563a540dfd
2 changed files with 2 additions and 2 deletions

View File

@@ -38,7 +38,7 @@ bool VirtualMemoryArea::CanBeMergedWith(const VirtualMemoryArea& next) const {
}
VMManager::VMManager(Memory::MemorySystem& memory)
: memory(memory), page_table(std::make_shared<Memory::PageTable>()) {
: page_table(std::make_shared<Memory::PageTable>()), memory(memory) {
Reset();
}