Browse Source
Merge pull request #2580 from lioncash/redundant
kernel/vm_manager: Remove redundant Reset call in destructor
pull/15/merge
Zach Hilman
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
3 deletions
-
src/core/hle/kernel/vm_manager.cpp
|
|
|
@ -68,9 +68,7 @@ VMManager::VMManager(Core::System& system) : system{system} { |
|
|
|
Reset(FileSys::ProgramAddressSpaceType::Is39Bit); |
|
|
|
} |
|
|
|
|
|
|
|
VMManager::~VMManager() { |
|
|
|
Reset(FileSys::ProgramAddressSpaceType::Is39Bit); |
|
|
|
} |
|
|
|
VMManager::~VMManager() = default; |
|
|
|
|
|
|
|
void VMManager::Reset(FileSys::ProgramAddressSpaceType type) { |
|
|
|
Clear(); |
|
|
|
|