Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r69019 - trunk/boost/smart_ptr/detail
From: blelbach_at_[hidden]
Date: 2011-02-18 20:33:47


Author: wash
Date: 2011-02-18 20:33:46 EST (Fri, 18 Feb 2011)
New Revision: 69019
URL: http://svn.boost.org/trac/boost/changeset/69019

Log:
Intel 11.0 doesn't provide __sync intrinsics - this is added in Intel 11.1.

Text files modified:
   trunk/boost/smart_ptr/detail/sp_has_sync.hpp | 2 +-
   1 files changed, 1 insertions(+), 1 deletions(-)

Modified: trunk/boost/smart_ptr/detail/sp_has_sync.hpp
==============================================================================
--- trunk/boost/smart_ptr/detail/sp_has_sync.hpp (original)
+++ trunk/boost/smart_ptr/detail/sp_has_sync.hpp 2011-02-18 20:33:46 EST (Fri, 18 Feb 2011)
@@ -40,7 +40,7 @@
 #undef BOOST_SP_HAS_SYNC
 #endif
 
-#if defined( __INTEL_COMPILER ) && !defined( __ia64__ ) && ( __INTEL_COMPILER < 1100 )
+#if defined( __INTEL_COMPILER ) && !defined( __ia64__ ) && ( __INTEL_COMPILER < 1110 )
 #undef BOOST_SP_HAS_SYNC
 #endif
 


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