Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r77593 - trunk/boost/exception/detail
From: emil_at_[hidden]
Date: 2012-03-27 15:33:23


Author: emildotchevski
Date: 2012-03-27 15:33:22 EDT (Tue, 27 Mar 2012)
New Revision: 77593
URL: http://svn.boost.org/trac/boost/changeset/77593

Log:
This should take care of #6349. Hopefully doesn't break some other configurations.
Text files modified:
   trunk/boost/exception/detail/exception_ptr.hpp | 4 ++--
   1 files changed, 2 insertions(+), 2 deletions(-)

Modified: trunk/boost/exception/detail/exception_ptr.hpp
==============================================================================
--- trunk/boost/exception/detail/exception_ptr.hpp (original)
+++ trunk/boost/exception/detail/exception_ptr.hpp 2012-03-27 15:33:22 EDT (Tue, 27 Mar 2012)
@@ -25,7 +25,7 @@
 #include <stdexcept>
 #include <new>
 #include <ios>
-#include <cstdlib>
+#include <stdlib.h>
 
 namespace
 boost
@@ -457,7 +457,7 @@
         BOOST_ASSERT(p);
         p.ptr_->rethrow();
         BOOST_ASSERT(0);
- std::abort();
+ abort();
         }
 
     inline


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk