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

@ -27,10 +27,6 @@ may_throw_on_copy
if( throw_ )
throw T();
}
#if defined(__PATHSCALE__)
~may_throw_on_copy() throw() {}
#endif
bool throw_;
};
@ -63,9 +59,6 @@ struct
derives_std_exception:
std::exception
{
#if defined(__PATHSCALE__)
~derives_std_exception() throw() {}
#endif
};
struct
@ -84,19 +77,12 @@ derives_std_boost_exception:
{
return wh_;
}
#if defined(__PATHSCALE__)
~derives_std_boost_exception() throw() {}
#endif
};
struct
derives_boost_exception:
boost::exception
{
#if defined(__PATHSCALE__)
~derives_boost_exception() throw() {}
#endif
};
template <class T>