mirror of
https://github.com/boostorg/exception.git
synced 2025-07-10 11:06:34 +02:00
Revert [67111] (addition of boost/detail/iomanip.hpp) and all the commits that depend on it. ([68137], [68140], [68141], [68154], and [68165]).
[SVN r68168]
This commit is contained in:
@ -15,9 +15,6 @@ struct
|
||||
exception1:
|
||||
std::exception
|
||||
{
|
||||
#if defined(__PATHSCALE__)
|
||||
~exception1() throw() {}
|
||||
#endif
|
||||
};
|
||||
|
||||
struct
|
||||
@ -25,9 +22,6 @@ exception2:
|
||||
std::exception,
|
||||
boost::exception
|
||||
{
|
||||
#if defined(__PATHSCALE__)
|
||||
~exception2() throw() {}
|
||||
#endif
|
||||
};
|
||||
|
||||
void
|
||||
@ -46,7 +40,7 @@ boost_throw_exception_test()
|
||||
int const * line=boost::get_error_info<boost::throw_line>(x);
|
||||
BOOST_TEST( file && *file );
|
||||
BOOST_TEST( function && *function );
|
||||
BOOST_TEST( line && *line==38 );
|
||||
BOOST_TEST( line && *line==32 );
|
||||
}
|
||||
catch(
|
||||
... )
|
||||
@ -67,7 +61,7 @@ boost_throw_exception_test()
|
||||
int const * data=boost::get_error_info<test_data>(x);
|
||||
BOOST_TEST( file && *file );
|
||||
BOOST_TEST( function && *function );
|
||||
BOOST_TEST( line && *line==58 );
|
||||
BOOST_TEST( line && *line==52 );
|
||||
BOOST_TEST( data && *data==42 );
|
||||
}
|
||||
catch(
|
||||
|
Reference in New Issue
Block a user