1
0
mirror of https://github.com/citra-emu/citra.git synced 2025-04-28 12:40:06 +00:00

Merge pull request from lioncash/pessimizing-move

input_common/sdl: Silence a -Wpessimizing-move warning
This commit is contained in:
Yuri Kunde Schlesner 2017-12-10 21:18:17 -05:00 committed by GitHub
commit 660accc92f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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