Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r61933 - trunk/boost/config/compiler
From: nielsdekker_at_[hidden]
Date: 2010-05-12 14:23:34


Author: niels_dekker
Date: 2010-05-12 14:23:33 EDT (Wed, 12 May 2010)
New Revision: 61933
URL: http://svn.boost.org/trac/boost/changeset/61933

Log:
Added BOOST_NO_COMPLETE_VALUE_INITIALIZATION to IBM XL C++ <= V11.1 (trunk), see #4080.
Text files modified:
   trunk/boost/config/compiler/vacpp.hpp | 4 ++--
   1 files changed, 2 insertions(+), 2 deletions(-)

Modified: trunk/boost/config/compiler/vacpp.hpp
==============================================================================
--- trunk/boost/config/compiler/vacpp.hpp (original)
+++ trunk/boost/config/compiler/vacpp.hpp 2010-05-12 14:23:33 EDT (Wed, 12 May 2010)
@@ -30,8 +30,8 @@
 # define BOOST_NO_INITIALIZER_LISTS
 #endif
 
-#if (__IBMCPP__ <= 1101)
-// XL C++ V11.0.1.0 and earlier versions may not always value-initialize
+#if (__IBMCPP__ <= 1110)
+// XL C++ V11.1 and earlier versions may not always value-initialize
 // a temporary object T(), when T is a non-POD aggregate class type.
 // Michael Wong (IBM Canada Ltd) has confirmed this issue and gave it
 // high priority. -- Niels Dekker (LKEB), May 2010.


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