diff options
author | Lioncash <mathew1800@gmail.com> | 2018-08-03 03:51:08 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-08-03 03:51:11 +0200 |
commit | 684fc2c32067cf450cd1e95c036c5337aa860718 (patch) | |
tree | 59c9f5035c879305364f591f1982634885121dc0 /src/input_common/keyboard.cpp | |
parent | input_common: Add missing override specifiers (diff) | |
download | yuzu-684fc2c32067cf450cd1e95c036c5337aa860718.tar yuzu-684fc2c32067cf450cd1e95c036c5337aa860718.tar.gz yuzu-684fc2c32067cf450cd1e95c036c5337aa860718.tar.bz2 yuzu-684fc2c32067cf450cd1e95c036c5337aa860718.tar.lz yuzu-684fc2c32067cf450cd1e95c036c5337aa860718.tar.xz yuzu-684fc2c32067cf450cd1e95c036c5337aa860718.tar.zst yuzu-684fc2c32067cf450cd1e95c036c5337aa860718.zip |
Diffstat (limited to '')
-rw-r--r-- | src/input_common/keyboard.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/input_common/keyboard.cpp b/src/input_common/keyboard.cpp index 0410ff328..525fe6abc 100644 --- a/src/input_common/keyboard.cpp +++ b/src/input_common/keyboard.cpp @@ -5,6 +5,7 @@ #include <atomic> #include <list> #include <mutex> +#include <utility> #include "input_common/keyboard.h" namespace InputCommon { @@ -12,7 +13,7 @@ namespace InputCommon { class KeyButton final : public Input::ButtonDevice { public: explicit KeyButton(std::shared_ptr<KeyButtonList> key_button_list_) - : key_button_list(key_button_list_) {} + : key_button_list(std::move(key_button_list_)) {} ~KeyButton() override; |