diff options
| author | bunnei <bunneidev@gmail.com> | 2020-11-23 17:25:53 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-23 17:25:53 -0800 |
| commit | e371d12af6046c316956edb2f6322ad66c0189d4 (patch) | |
| tree | 77be1c6d43761f3e2df60a45f6224865dd4835cc /src/input_common/touch_from_button.cpp | |
| parent | 5d1447897aebc371439507f42507bd98f1cfc223 (diff) | |
| parent | 5c4774e8ce1d3c5391402f4b2244cfb4dfe7d57a (diff) | |
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: std::vector<std::tuple<std::unique_ptr<Input::ButtonDevice>, int, int>> map; }; -std::unique_ptr<Input::TouchDevice> TouchFromButtonFactory::Create( - const Common::ParamPackage& params) { +std::unique_ptr<Input::TouchDevice> TouchFromButtonFactory::Create(const Common::ParamPackage&) { return std::make_unique<TouchFromButtonDevice>(); } |
