diff options
| author | 2018-01-17 18:44:16 -0500 | |
|---|---|---|
| committer | 2018-01-17 18:44:16 -0500 | |
| commit | ed296e47f1f781ae644926dd48b751a1546951a4 (patch) | |
| tree | 04623bdf1c8fb02349a828595f9b10951ca5aae0 /src/input_common/sdl/sdl.cpp | |
| parent | Merge pull request #73 from N00byKing/3093 (diff) | |
| download | yuzu-ed296e47f1f781ae644926dd48b751a1546951a4.tar.gz yuzu-ed296e47f1f781ae644926dd48b751a1546951a4.tar.xz yuzu-ed296e47f1f781ae644926dd48b751a1546951a4.zip | |
input_common/sdl: Silence a -Wpessimizing-move warning
Diffstat (limited to 'src/input_common/sdl/sdl.cpp')
| -rw-r--r-- | src/input_common/sdl/sdl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input_common/sdl/sdl.cpp b/src/input_common/sdl/sdl.cpp index 88b557c5d..3b87d6b65 100644 --- a/src/input_common/sdl/sdl.cpp +++ b/src/input_common/sdl/sdl.cpp | |||
| @@ -425,7 +425,7 @@ std::vector<std::unique_ptr<InputCommon::Polling::DevicePoller>> GetPollers( | |||
| 425 | pollers.push_back(std::make_unique<SDLButtonPoller>()); | 425 | pollers.push_back(std::make_unique<SDLButtonPoller>()); |
| 426 | break; | 426 | break; |
| 427 | } | 427 | } |
| 428 | return std::move(pollers); | 428 | return pollers; |
| 429 | } | 429 | } |
| 430 | } // namespace Polling | 430 | } // namespace Polling |
| 431 | } // namespace SDL | 431 | } // namespace SDL |