Opened 8 years ago

Closed 8 years ago

#10729 closed Bugs (fixed)

BOOST_NO_COMPLETE_VALUE_INITIALIZATION set issue on solaris 11.2/studio 12.4

Reported by: angela.xie@… Owned by: John Maddock
Milestone: To Be Determined Component: config
Version: Boost 1.55.0 Severity: Problem
Keywords: Cc:

Description

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

72:# if (SUNPRO_CC <= 0x5100) 73: Sun 5.10 may not correctly value-initialize objects of 74: some user defined types, as was reported in April 2010 75: (CR 6947016), and confirmed by Steve Clamage. 76: (Niels Dekker, LKEB, May 2010). 77:# define BOOST_NO_COMPLETE_VALUE_INITIALIZATION 78:# endif

solution: replace line 72:# if (SUNPRO_CC <= 0x5100) with # if (SUNPRO_CC <= 0x5130)

Change History (1)

comment:1 by John Maddock, 8 years ago

Resolution: fixed
Status: newclosed

This has been fixed in develop.

Note: See TracTickets for help on using tickets.