Searched defs:ScopeGuard (Results 1 – 1 of 1) sorted by relevance
26 ScopeGuard(Func &&f) : func_(std::forward<Func>(f)), active_(true) in ScopeGuard() function30 ScopeGuard(ScopeGuard &&rhs) : func_(std::move(rhs.func)), active_(rhs.active_) in ScopeGuard() function