mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-01 12:57:52 +00:00
kernel/vm_manager: Remove redundant Reset call in destructor
This is performing more work than would otherwise be necessary during VMManager's destruction. All we actually want to occur in this scenario is for any allocated memory to be freed, which will happen automatically as the VMManager instance goes out of scope. Anything else being done is simply unnecessary work.
This commit is contained in:
parent
7e2bcf04b4
commit
0af3b4d9f4
1 changed files with 1 additions and 3 deletions
|
@ -68,9 +68,7 @@ VMManager::VMManager(Core::System& system) : system{system} {
|
||||||
Reset(FileSys::ProgramAddressSpaceType::Is39Bit);
|
Reset(FileSys::ProgramAddressSpaceType::Is39Bit);
|
||||||
}
|
}
|
||||||
|
|
||||||
VMManager::~VMManager() {
|
VMManager::~VMManager() = default;
|
||||||
Reset(FileSys::ProgramAddressSpaceType::Is39Bit);
|
|
||||||
}
|
|
||||||
|
|
||||||
void VMManager::Reset(FileSys::ProgramAddressSpaceType type) {
|
void VMManager::Reset(FileSys::ProgramAddressSpaceType type) {
|
||||||
Clear();
|
Clear();
|
||||||
|
|
Loading…
Reference in a new issue