Fixing a build glitch in the non-intrusive exception_ptr support (Authorized by Eric)

[SVN r72995]
This commit is contained in:
Emil Dotchevski
2011-07-10 05:45:57 +00:00
parent f5dc3715bc
commit a73deaa3f3
6 changed files with 60 additions and 17 deletions

View File

@ -25,6 +25,7 @@
#include <stdexcept>
#include <new>
#include <ios>
#include <cstdlib>
namespace
boost
@ -455,6 +456,8 @@ boost
{
BOOST_ASSERT(p);
p.ptr_->rethrow();
BOOST_ASSERT(0);
std::abort();
}
inline