Searched defs:scope_exit (Results 1 – 2 of 2) 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
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_;