Searched defs:ScopeGuard (Results 1 – 1 of 1) sorted by relevance
26 ScopeGuard(F f) : f_(f), active_(true) {} in ScopeGuard() function28 ScopeGuard(ScopeGuard&& that) : f_(that.f_), active_(that.active_) { in ScopeGuard() function