Home
last modified time | relevance | path

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

/oneTBB/src/tbb/
H A Dexception.cpp45 /*[[noreturn]]*/ void do_throw_noexcept(F throw_func) noexcept { in do_throw_noexcept() argument
46 throw_func(); in do_throw_noexcept()
49 /*[[noreturn]]*/ void do_throw_noexcept(void (*throw_func)()) noexcept { in do_throw_noexcept() argument
50 throw_func(); in do_throw_noexcept()
62 /*[[noreturn]]*/ void do_throw(F throw_func) { in do_throw() argument
64 do_throw_noexcept(throw_func); in do_throw()
66 throw_func(); in do_throw()