| 473 | template <class... E> |
| 474 | template <class R, class... H> |
| 475 | BOOST_LEAF_CONSTEXPR BOOST_LEAF_ALWAYS_INLINE |
| 476 | R |
| 477 | context<E...>:: |
| 478 | handle_error( error_id id, H && ... h ) const |
| 479 | { |
| 480 | BOOST_LEAF_ASSERT(!is_active()); |
| 481 | return detail::handle_error_<R>(*this, error_info(id, nullptr, this->get<e_source_location>(id)), std::forward<H>(h)...); |
| 482 | } |
| 483 | |
| 484 | template <class... E> |
| 485 | template <class R, class... H> |
nothing calls this directly
no test coverage detected