mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-22 20:55:45 +00:00
kernel/handle_table: Default destructor in the cpp file
We don't need to potentially inline the teardown logic of all of the handle instances.
This commit is contained in:
parent
5af4160bf2
commit
f5ce71793e
2 changed files with 3 additions and 0 deletions
|
@ -18,6 +18,8 @@ HandleTable::HandleTable() {
|
|||
Clear();
|
||||
}
|
||||
|
||||
HandleTable::~HandleTable() = default;
|
||||
|
||||
ResultVal<Handle> HandleTable::Create(SharedPtr<Object> obj) {
|
||||
DEBUG_ASSERT(obj != nullptr);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue