summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-01-18 03:08:01 +0100
committerGitHub <noreply@github.com>2018-01-18 03:08:01 +0100
commit18507b09b2bae22d6a516f8368e35bf5312d7e39 (patch)
treeb1d2255ece280e31eefc288e41a3f7e4bd48eb94 /src
parentMerge pull request #82 from lioncash/catch (diff)
parentinput_common/sdl: Silence a -Wpessimizing-move warning (diff)
downloadyuzu-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.cpp2
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