Home
last modified time | relevance | path

Searched refs:RunOnDestruction (Results 1 – 1 of 1) sorted by relevance

/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_common.h804 class RunOnDestruction {
806 explicit RunOnDestruction(Fn fn) : fn_(fn) {} in RunOnDestruction() function
807 ~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()