Boost C++ Libraries: Ticket #10729: BOOST_NO_COMPLETE_VALUE_INITIALIZATION set issue on solaris 11.2/studio 12.4 https://svn.boost.org/trac10/ticket/10729 <p> Problem:macro BOOST_NO_COMPLETE_VALUE_INITIALIZATION is defined only for old studio compiler in boost_1_55_0/boost/config/compiler/sunpro_cc.hpp </p> <p> 72:# if (<span class="underline">SUNPRO_CC &lt;= 0x5100) 73: <em> Sun 5.10 may not correctly value-initialize objects of 74: </em> some user defined types, as was reported in April 2010 75: <em> (CR 6947016), and confirmed by Steve Clamage. 76: </em> (Niels Dekker, LKEB, May 2010). 77:# define BOOST_NO_COMPLETE_VALUE_INITIALIZATION 78:# endif </span></p> <p> solution: replace line 72:# if (<span class="underline">SUNPRO_CC &lt;= 0x5100) with # if (</span>SUNPRO_CC &lt;= 0x5130) </p> en-us Boost C++ Libraries /htdocs/site/boost.png https://svn.boost.org/trac10/ticket/10729 Trac 1.4.3 John Maddock Mon, 23 Feb 2015 13:02:48 GMT status changed; resolution set https://svn.boost.org/trac10/ticket/10729#comment:1 https://svn.boost.org/trac10/ticket/10729#comment:1 <ul> <li><strong>status</strong> <span class="trac-field-old">new</span> → <span class="trac-field-new">closed</span> </li> <li><strong>resolution</strong> → <span class="trac-field-new">fixed</span> </li> </ul> <p> This has been fixed in develop. </p> Ticket