mirror of
https://github.com/Lime3DS/Lime3DS
synced 2024-10-31 20:27:52 +00:00
Merge pull request #3263 from lioncash/pessimizing-move
input_common/sdl: Silence a -Wpessimizing-move warning
This commit is contained in:
commit
660accc92f
1 changed files with 1 additions and 1 deletions
|
@ -425,7 +425,7 @@ std::vector<std::unique_ptr<InputCommon::Polling::DevicePoller>> GetPollers(
|
||||||
pollers.push_back(std::make_unique<SDLButtonPoller>());
|
pollers.push_back(std::make_unique<SDLButtonPoller>());
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
return std::move(pollers);
|
return pollers;
|
||||||
}
|
}
|
||||||
} // namespace Polling
|
} // namespace Polling
|
||||||
} // namespace SDL
|
} // namespace SDL
|
||||||
|
|
Loading…
Reference in a new issue