Searched defs:OnScopeLeaveImpl (Results 1 – 1 of 1) sorted by relevance
560 struct OnScopeLeaveImpl { struct564 explicit OnScopeLeaveImpl(Fn&& fn) : fn_(std::move(fn)), active_(true) {} in OnScopeLeaveImpl() function565 ~OnScopeLeaveImpl() { if (active_) fn_(); } in ~OnScopeLeaveImpl() argument568 OnScopeLeaveImpl& operator=(const OnScopeLeaveImpl& other) = delete; argument569 OnScopeLeaveImpl(OnScopeLeaveImpl&& other) in OnScopeLeaveImpl() function