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:
Steven Watanabe
2011-01-15 08:11:51 +00:00
parent f1a4e59469
commit c210c38dae
6 changed files with 5 additions and 44 deletions

View File

@ -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(