MCPcopy Create free account
hub / github.com/boostorg/leaf / throw_exception

Function throw_exception

include/boost/leaf/exception.hpp:228–235  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

226
227template <class... E>
228[[noreturn]] void throw_exception( E && ... e )
229{
230 // Warning: setting a breakpoint here will not intercept exceptions thrown
231 // via BOOST_LEAF_THROW_EXCEPTION or originating in the few other throw
232 // points elsewhere in LEAF. To intercept all of those exceptions as well,
233 // set a breakpoint inside boost::leaf::throw_exception_.
234 throw_exception_(detail::make_exception(std::forward<E>(e)...));
235}
236
237////////////////////////////////////////
238

Callers 2

throw_exception_Function · 0.70
enforce_value_stateFunction · 0.70

Calls 2

throw_exception_Function · 0.85
make_exceptionFunction · 0.85

Tested by

no test coverage detected