1
0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2025-06-18 21:00:13 +00:00

Merge pull request from lioncash/scope

common/scope_exit: Replace std::move with std::forward in ScopeExit()
This commit is contained in:
bunnei 2019-04-12 21:52:35 -04:00 committed by GitHub
commit b42595fa6b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -20,7 +20,7 @@ struct ScopeExitHelper {
template <typename Func> template <typename Func>
ScopeExitHelper<Func> ScopeExit(Func&& func) { ScopeExitHelper<Func> ScopeExit(Func&& func) {
return ScopeExitHelper<Func>(std::move(func)); return ScopeExitHelper<Func>(std::forward<Func>(func));
} }
} // namespace detail } // namespace detail