Added BOOST_NO_COMPLETE_VALUE_INITIALIZATION to IBM XL C++ <= V11.0.1 (trunk), see #4080.

[SVN r61848]
This commit is contained in:
Niels Dekker
2010-05-07 20:05:46 +00:00
parent 9b529bbc11
commit 888fd57252

View File

@@ -30,11 +30,11 @@
# define BOOST_NO_INITIALIZER_LISTS # define BOOST_NO_INITIALIZER_LISTS
#endif #endif
#if (__IBMCPP__ <= 1010) #if (__IBMCPP__ <= 1101)
// XL C++ V10.1.0.0 may not always value-initialize a temporary object T(), // XL C++ V11.0.1.0 and earlier versions may not always value-initialize
// when T is a non-POD aggregate class type. Michael Wong (IBM Canada Ltd) // a temporary object T(), when T is a non-POD aggregate class type.
// has confirmed this issue and gave it high priority. // Michael Wong (IBM Canada Ltd) has confirmed this issue and gave it
// -- Niels Dekker (LKEB), 2010. // high priority. -- Niels Dekker (LKEB), May 2010.
# define BOOST_NO_COMPLETE_VALUE_INITIALIZATION # define BOOST_NO_COMPLETE_VALUE_INITIALIZATION
#endif #endif