boost/exception/enable_exception_cloning.hpp uses std::bad_alloc
without #include'ing <new>. Because of this, some exception library
tests fail to compile on HP-UX.

[SVN r43555]
This commit is contained in:
Emil Dotchevski
2008-03-10 20:18:19 +00:00
parent 45fe1f6289
commit e961744baf

View File

@ -10,7 +10,7 @@
#include <boost/exception/detail/cloning_base.hpp>
#include <boost/detail/atomic_count.hpp>
#include <boost/assert.hpp>
#include <stdexcept>
#include <new>
namespace
boost