diff options
author | bunnei <bunneidev@gmail.com> | 2018-01-18 03:08:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-18 03:08:01 +0100 |
commit | 18507b09b2bae22d6a516f8368e35bf5312d7e39 (patch) | |
tree | b1d2255ece280e31eefc288e41a3f7e4bd48eb94 /src | |
parent | Merge pull request #82 from lioncash/catch (diff) | |
parent | input_common/sdl: Silence a -Wpessimizing-move warning (diff) | |
download | yuzu-18507b09b2bae22d6a516f8368e35bf5312d7e39.tar yuzu-18507b09b2bae22d6a516f8368e35bf5312d7e39.tar.gz yuzu-18507b09b2bae22d6a516f8368e35bf5312d7e39.tar.bz2 yuzu-18507b09b2bae22d6a516f8368e35bf5312d7e39.tar.lz yuzu-18507b09b2bae22d6a516f8368e35bf5312d7e39.tar.xz yuzu-18507b09b2bae22d6a516f8368e35bf5312d7e39.tar.zst yuzu-18507b09b2bae22d6a516f8368e35bf5312d7e39.zip |
Diffstat (limited to 'src')
-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( pollers.push_back(std::make_unique<SDLButtonPoller>()); break; } - return std::move(pollers); + return pollers; } } // namespace Polling } // namespace SDL |