Add missing std::move in on_scope_end implementation

This commit is contained in:
Maxime Coste 2017-05-17 20:12:36 +01:00
parent 0229baf6ba
commit 7acf11c851

View File

@ -76,7 +76,7 @@ private:
template<typename T>
OnScopeEnd<T> on_scope_end(T t)
{
return OnScopeEnd<T>(t);
return OnScopeEnd<T>{std::move(t)};
}
// *** Misc helper functions ***