diff options
| author | 2020-10-15 20:59:34 -0700 | |
|---|---|---|
| committer | 2020-10-15 20:59:34 -0700 | |
| commit | 64f967fd4958abb5a02191a81e91fc8b33bcf4c5 (patch) | |
| tree | 97a73da4871f006b39eafca3a881ae2ea42f206a /src/input_common/motion_from_button.cpp | |
| parent | Merge pull request #4784 from bunnei/cancelbuffer (diff) | |
| parent | input_common/CMakeLists: Make some warnings errors (diff) | |
| download | yuzu-64f967fd4958abb5a02191a81e91fc8b33bcf4c5.tar.gz yuzu-64f967fd4958abb5a02191a81e91fc8b33bcf4c5.tar.xz yuzu-64f967fd4958abb5a02191a81e91fc8b33bcf4c5.zip | |
Merge pull request #4790 from lioncash/input-common
input_common/CMakeLists: Make some warnings errors
Diffstat (limited to 'src/input_common/motion_from_button.cpp')
| -rw-r--r-- | src/input_common/motion_from_button.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input_common/motion_from_button.cpp b/src/input_common/motion_from_button.cpp index 9d459f963..29045a673 100644 --- a/src/input_common/motion_from_button.cpp +++ b/src/input_common/motion_from_button.cpp | |||
| @@ -11,7 +11,7 @@ class MotionKey final : public Input::MotionDevice { | |||
| 11 | public: | 11 | public: |
| 12 | using Button = std::unique_ptr<Input::ButtonDevice>; | 12 | using Button = std::unique_ptr<Input::ButtonDevice>; |
| 13 | 13 | ||
| 14 | MotionKey(Button key_) : key(std::move(key_)) {} | 14 | explicit MotionKey(Button key_) : key(std::move(key_)) {} |
| 15 | 15 | ||
| 16 | Input::MotionStatus GetStatus() const override { | 16 | Input::MotionStatus GetStatus() const override { |
| 17 | 17 | ||