mirror of
https://github.com/boostorg/exception.git
synced 2025-07-26 10:37:15 +02:00
@ -119,10 +119,12 @@ boost
|
|||||||
{
|
{
|
||||||
Exception ba;
|
Exception ba;
|
||||||
exception_detail::clone_impl<Exception> c(ba);
|
exception_detail::clone_impl<Exception> c(ba);
|
||||||
|
#ifndef BOOST_EXCEPTION_DISABLE
|
||||||
c <<
|
c <<
|
||||||
throw_function(BOOST_CURRENT_FUNCTION) <<
|
throw_function(BOOST_CURRENT_FUNCTION) <<
|
||||||
throw_file(__FILE__) <<
|
throw_file(__FILE__) <<
|
||||||
throw_line(__LINE__);
|
throw_line(__LINE__);
|
||||||
|
#endif
|
||||||
static exception_ptr ep(shared_ptr<exception_detail::clone_base const>(new exception_detail::clone_impl<Exception>(c)));
|
static exception_ptr ep(shared_ptr<exception_detail::clone_base const>(new exception_detail::clone_impl<Exception>(c)));
|
||||||
return ep;
|
return ep;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user