aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/handle_table.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-11-21 18:22:24 -0500
committerLioncash <mathew1800@gmail.com>2018-11-21 18:23:09 -0500
commitf5ce71793e1d60fdecd641484038a1436c161905 (patch)
treef2429310a7f1a3c5fae3632adda89411083868b9 /src/core/hle/kernel/handle_table.h
parent5af4160bf2a7d59c7c407131473feeb669ab37c5 (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.h')
-rw-r--r--src/core/hle/kernel/handle_table.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hle/kernel/handle_table.h b/src/core/hle/kernel/handle_table.h
index 9e2f33e8a..b5e5f6545 100644
--- a/src/core/hle/kernel/handle_table.h
+++ b/src/core/hle/kernel/handle_table.h
@@ -43,6 +43,7 @@ enum KernelHandle : Handle {
class HandleTable final : NonCopyable {
public:
HandleTable();
+ ~HandleTable();
/**
* Allocates a handle for the given object.