aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/hid/controllers/mouse.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-10-17 20:34:25 -0400
committerLioncash <mathew1800@gmail.com>2018-10-17 20:52:43 -0400
commit46202e984e176241fd5a2f766907035e87198c99 (patch)
treec1249f47c18b0716f8b086708370b26e7c3c74b6 /src/core/hle/service/hid/controllers/mouse.cpp
parent119b47f366df61569113395f2ee2bc4df5b8a2ad (diff)
hid/controller: Default the destructors of all controller types in the cpp file
These classes are non-trivial and are definitely going to be changed in the future, so we default these to prevent issues with forward declarations, and to keep the compiler from inlining tear-down code.
Diffstat (limited to 'src/core/hle/service/hid/controllers/mouse.cpp')
-rw-r--r--src/core/hle/service/hid/controllers/mouse.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hle/service/hid/controllers/mouse.cpp b/src/core/hle/service/hid/controllers/mouse.cpp
index 78e9b5e9e..29984bd4c 100644
--- a/src/core/hle/service/hid/controllers/mouse.cpp
+++ b/src/core/hle/service/hid/controllers/mouse.cpp
@@ -12,6 +12,7 @@ namespace Service::HID {
constexpr std::size_t SHARED_MEMORY_OFFSET = 0x3400;
Controller_Mouse::Controller_Mouse() = default;
+Controller_Mouse::~Controller_Mouse() = default;
void Controller_Mouse::OnInit() {}