Searched refs:RunOnDestruction (Results 1 – 1 of 1) sorted by relevance
804 class RunOnDestruction {806 explicit RunOnDestruction(Fn fn) : fn_(fn) {} in RunOnDestruction() function807 ~RunOnDestruction() { fn_(); } in ~RunOnDestruction()816 RunOnDestruction<Fn> at_scope_exit(Fn fn) { in at_scope_exit()817 return RunOnDestruction<Fn>(fn); in at_scope_exit()