Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r81126 - trunk/boost/smart_ptr/detail
From: pdimov_at_[hidden]
Date: 2012-10-31 16:16:56


Author: pdimov
Date: 2012-10-31 16:16:56 EDT (Wed, 31 Oct 2012)
New Revision: 81126
URL: http://svn.boost.org/trac/boost/changeset/81126

Log:
Do not use sp_counted_base_gcc_ppc on AIX. Refs #6996.
Text files modified:
   trunk/boost/smart_ptr/detail/sp_counted_base.hpp | 2 +-
   1 files changed, 1 insertions(+), 1 deletions(-)

Modified: trunk/boost/smart_ptr/detail/sp_counted_base.hpp
==============================================================================
--- trunk/boost/smart_ptr/detail/sp_counted_base.hpp (original)
+++ trunk/boost/smart_ptr/detail/sp_counted_base.hpp 2012-10-31 16:16:56 EDT (Wed, 31 Oct 2012)
@@ -50,7 +50,7 @@
 #elif defined( __MWERKS__ ) && defined( __POWERPC__ )
 # include <boost/smart_ptr/detail/sp_counted_base_cw_ppc.hpp>
 
-#elif defined( __GNUC__ ) && ( defined( __powerpc__ ) || defined( __ppc__ ) || defined( __ppc ) ) && !defined(__PATHSCALE__)
+#elif defined( __GNUC__ ) && ( defined( __powerpc__ ) || defined( __ppc__ ) || defined( __ppc ) ) && !defined(__PATHSCALE__) && !defined( _AIX )
 # include <boost/smart_ptr/detail/sp_counted_base_gcc_ppc.hpp>
 
 #elif defined( __GNUC__ ) && ( defined( __mips__ ) || defined( _mips ) ) && !defined(__PATHSCALE__)


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