mirror of
https://github.com/boostorg/exception.git
synced 2025-07-04 00:06:40 +02:00
N2179 compliance (pending documentation update)
[SVN r44438]
This commit is contained in:
@ -35,9 +35,9 @@ tester()
|
||||
BOOST_ASSERT(false);
|
||||
}
|
||||
catch(
|
||||
std::exception & x )
|
||||
... )
|
||||
{
|
||||
boost::exception_ptr p = boost::clone_exception(x);
|
||||
boost::exception_ptr p = boost::current_exception();
|
||||
try
|
||||
{
|
||||
rethrow_exception(p);
|
||||
@ -55,11 +55,6 @@ tester()
|
||||
BOOST_TEST(false);
|
||||
}
|
||||
}
|
||||
catch(
|
||||
... )
|
||||
{
|
||||
BOOST_TEST(false);
|
||||
}
|
||||
}
|
||||
|
||||
int
|
||||
|
Reference in New Issue
Block a user