Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r62094 - trunk/boost/config/compiler
From: nielsdekker_at_[hidden]
Date: 2010-05-19 05:54:08


Author: niels_dekker
Date: 2010-05-19 05:54:06 EDT (Wed, 19 May 2010)
New Revision: 62094
URL: http://svn.boost.org/trac/boost/changeset/62094

Log:
Added BOOST_NO_COMPLETE_VALUE_INITIALIZATION to VC++ 10.0 (trunk), see #4080.

Text files modified:
   trunk/boost/config/compiler/visualc.hpp | 13 ++++++-------
   1 files changed, 6 insertions(+), 7 deletions(-)

Modified: trunk/boost/config/compiler/visualc.hpp
==============================================================================
--- trunk/boost/config/compiler/visualc.hpp (original)
+++ trunk/boost/config/compiler/visualc.hpp 2010-05-19 05:54:06 EDT (Wed, 19 May 2010)
@@ -101,16 +101,15 @@
 #endif
 
 
-// TODO The following condition should probably be #if (_MSC_VER <= 1600).
-// However, I need to have a look at the regression page beforehand:
-// http://www.boost.org/development/tests/trunk/developer/config.html
-// (Niels Dekker, LKEB, May 17, 2010)
-#if (_MSC_VER < 1600)
-// MSVC has not yet completely implemented value-initialization, as
-// is reported:
+#if (_MSC_VER <= 1600)
+// MSVC (including the latest checked version) has not yet completely
+// implemented value-initialization, as is reported:
 // "VC++ does not value-initialize members of derived classes without
 // user-declared constructor", reported in 2009 by Sylvester Hesp:
 // https://connect.microsoft.com/VisualStudio/feedback/details/484295
+// "Presence of copy constructor breaks member class initialization",
+// reported in 2009 by Alex Vakulenko:
+// https://connect.microsoft.com/VisualStudio/feedback/details/499606
 // "Value-initialization in new-expression", reported in 2005 by
 // Pavel Kuznetsov (MetaCommunications Engineering):
 // https://connect.microsoft.com/VisualStudio/feedback/details/100744


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