Searched refs:throw_func (Results 1 – 1 of 1) sorted by relevance
45 /*[[noreturn]]*/ void do_throw_noexcept(F throw_func) noexcept { in do_throw_noexcept() argument46 throw_func(); in do_throw_noexcept()49 /*[[noreturn]]*/ void do_throw_noexcept(void (*throw_func)()) noexcept { in do_throw_noexcept() argument50 throw_func(); in do_throw_noexcept()62 /*[[noreturn]]*/ void do_throw(F throw_func) { in do_throw() argument64 do_throw_noexcept(throw_func); in do_throw()66 throw_func(); in do_throw()