diff options
| author | Lioncash <mathew1800@gmail.com> | 2018-11-21 18:22:24 -0500 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2018-11-21 18:23:09 -0500 |
| commit | f5ce71793e1d60fdecd641484038a1436c161905 (patch) | |
| tree | f2429310a7f1a3c5fae3632adda89411083868b9 /src/core/hle/kernel/handle_table.cpp | |
| parent | 5af4160bf2a7d59c7c407131473feeb669ab37c5 (diff) | |
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.
Diffstat (limited to 'src/core/hle/kernel/handle_table.cpp')
| -rw-r--r-- | src/core/hle/kernel/handle_table.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/kernel/handle_table.cpp b/src/core/hle/kernel/handle_table.cpp index 5ee5c05e3..9f2b996c4 100644 --- a/src/core/hle/kernel/handle_table.cpp +++ b/src/core/hle/kernel/handle_table.cpp @@ -18,6 +18,8 @@ HandleTable::HandleTable() { Clear(); } +HandleTable::~HandleTable() = default; + ResultVal<Handle> HandleTable::Create(SharedPtr<Object> obj) { DEBUG_ASSERT(obj != nullptr); |
