aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/hid/controllers/keyboard.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-10-19 22:52:31 -0400
committerGitHub <noreply@github.com>2018-10-19 22:52:31 -0400
commit298ebf444f2999e0e8b6b893e61674567d607cfd (patch)
treec8ef1efce73ec68740f9ea3c4b1257c34e086307 /src/core/hle/service/hid/controllers/keyboard.cpp
parentc91be25b93bd7bfa7e074abf7cf5ad1b6b0850ab (diff)
parent452aa30cb72d19e62556d4927f575b4b48e20c8b (diff)
Merge pull request #1516 from lioncash/hid
hid: Minor cleanup-related changes
Diffstat (limited to 'src/core/hle/service/hid/controllers/keyboard.cpp')
-rw-r--r--src/core/hle/service/hid/controllers/keyboard.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/hid/controllers/keyboard.cpp b/src/core/hle/service/hid/controllers/keyboard.cpp
index 089c02ac4..ccfbce9ac 100644
--- a/src/core/hle/service/hid/controllers/keyboard.cpp
+++ b/src/core/hle/service/hid/controllers/keyboard.cpp
@@ -4,7 +4,6 @@
#include <cstring>
#include "common/common_types.h"
-#include "common/swap.h"
#include "core/core_timing.h"
#include "core/hle/service/hid/controllers/keyboard.h"
@@ -12,6 +11,7 @@ namespace Service::HID {
constexpr std::size_t SHARED_MEMORY_OFFSET = 0x3800;
Controller_Keyboard::Controller_Keyboard() = default;
+Controller_Keyboard::~Controller_Keyboard() = default;
void Controller_Keyboard::OnInit() {}