diff options
| author | 2020-11-23 17:25:53 -0800 | |
|---|---|---|
| committer | 2020-11-23 17:25:53 -0800 | |
| commit | e371d12af6046c316956edb2f6322ad66c0189d4 (patch) | |
| tree | 77be1c6d43761f3e2df60a45f6224865dd4835cc /src/input_common/touch_from_button.cpp | |
| parent | Merge pull request #4451 from slashiee/extended-logging (diff) | |
| parent | input_common: Treat warnings as errors (diff) | |
| download | yuzu-e371d12af6046c316956edb2f6322ad66c0189d4.tar.gz yuzu-e371d12af6046c316956edb2f6322ad66c0189d4.tar.xz yuzu-e371d12af6046c316956edb2f6322ad66c0189d4.zip | |
Merge pull request #4927 from lioncash/input-error
input_common: Treat warnings as errors
Diffstat (limited to 'src/input_common/touch_from_button.cpp')
| -rw-r--r-- | src/input_common/touch_from_button.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/input_common/touch_from_button.cpp b/src/input_common/touch_from_button.cpp index c37716aae..a07124a86 100644 --- a/src/input_common/touch_from_button.cpp +++ b/src/input_common/touch_from_button.cpp | |||
| @@ -44,8 +44,7 @@ private: | |||
| 44 | std::vector<std::tuple<std::unique_ptr<Input::ButtonDevice>, int, int>> map; | 44 | std::vector<std::tuple<std::unique_ptr<Input::ButtonDevice>, int, int>> map; |
| 45 | }; | 45 | }; |
| 46 | 46 | ||
| 47 | std::unique_ptr<Input::TouchDevice> TouchFromButtonFactory::Create( | 47 | std::unique_ptr<Input::TouchDevice> TouchFromButtonFactory::Create(const Common::ParamPackage&) { |
| 48 | const Common::ParamPackage& params) { | ||
| 49 | return std::make_unique<TouchFromButtonDevice>(); | 48 | return std::make_unique<TouchFromButtonDevice>(); |
| 50 | } | 49 | } |
| 51 | 50 | ||