Browse Source
Merge pull request #83 from lioncash/pessimizing-move
input_common/sdl: Silence a -Wpessimizing-move warning
pull/15/merge
bunnei
8 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
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
|
|
|
|
|