Searched defs:scope_exit (Results 1 – 3 of 3) sorted by relevance
32 explicit scope_exit(Fp &&F) : ExitFunction(std::forward<Fp>(F)) {} in scope_exit() function34 scope_exit(scope_exit &&Rhs) in scope_exit() function
50 struct scope_exit { struct52 scope_exit(callback *fn) : fn(fn) {} in scope_exit() argument54 ~scope_exit() { fn(); } in ~scope_exit() argument57 callback *fn;
755 struct scope_exit { struct756 explicit scope_exit(Cleanup const& cleanup) : cleanup_(cleanup) {} in scope_exit() argument758 ~scope_exit() { cleanup_(); } in ~scope_exit()761 Cleanup cleanup_;