diff options
| author | 2019-04-12 21:52:35 -0400 | |
|---|---|---|
| committer | 2019-04-12 21:52:35 -0400 | |
| commit | b42595fa6be5087ccfb581cb15518836b5740cef (patch) | |
| tree | 7832c439a79f4cca493a257bd1ba6bde61740b10 /src/common/scope_exit.h | |
| parent | Merge pull request #2392 from lioncash/swap (diff) | |
| parent | common/scope_exit: Replace std::move with std::forward in ScopeExit() (diff) | |
| download | yuzu-b42595fa6be5087ccfb581cb15518836b5740cef.tar.gz yuzu-b42595fa6be5087ccfb581cb15518836b5740cef.tar.xz yuzu-b42595fa6be5087ccfb581cb15518836b5740cef.zip | |
Merge pull request #2391 from lioncash/scope
common/scope_exit: Replace std::move with std::forward in ScopeExit()
Diffstat (limited to 'src/common/scope_exit.h')
| -rw-r--r-- | src/common/scope_exit.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/scope_exit.h b/src/common/scope_exit.h index baf1f1c9e..1176a72b1 100644 --- a/src/common/scope_exit.h +++ b/src/common/scope_exit.h | |||
| @@ -20,7 +20,7 @@ struct ScopeExitHelper { | |||
| 20 | 20 | ||
| 21 | template <typename Func> | 21 | template <typename Func> |
| 22 | ScopeExitHelper<Func> ScopeExit(Func&& func) { | 22 | ScopeExitHelper<Func> ScopeExit(Func&& func) { |
| 23 | return ScopeExitHelper<Func>(std::move(func)); | 23 | return ScopeExitHelper<Func>(std::forward<Func>(func)); |
| 24 | } | 24 | } |
| 25 | } // namespace detail | 25 | } // namespace detail |
| 26 | 26 | ||