Changes between Initial Version and Version 1 of Ticket #8824
- Timestamp:
- Aug 3, 2013, 5:20:45 AM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #8824
- Property Owner changed from to
- Property Status new → assigned
-
Ticket #8824 – Description
initial v1 1 1 First we have to fix smart_ptr/shared_ptr.hpp because of an compile bug on AIX 5.2 (bug already opend) 2 2 Change all occurences of 3 4 {{{ 3 5 #if !defined( __BORLANDC__ ) || !BOOST_WORKAROUND( __BORLANDC__, < 0x600 ) 6 }}} 7 4 8 to 9 10 {{{ 5 11 #if (!defined( __BORLANDC__ ) || !BOOST_WORKAROUND( __BORLANDC__, < 0x600 )) && !definded(_AIX) 12 }}} 6 13 14 15 16 {{{ 7 17 ./b2 -d+2 address-model=64 threading=multi link=static runtime-link=static version=debug thread 18 }}} 8 19 20 21 22 {{{ 9 23 vacpp.compile.c++ bin.v2/libs/thread/build/vacpp/debug/address-model-64/link-static/runtime-link-static/threading-multi/pthread/thread.o 10 24 … … 29 43 "./boost/thread/cv_status.hpp", line 23.3: 1540-1231 (I) The conversion from argument number 2 to "int" uses "an integral promotion". 30 44 "./boost/thread/cv_status.hpp", line 23.3: 1540-1202 (I) No candidate is better than "boost::operator==(self_type, enum_type)". 31 "./boost/thread/cv_status.hpp", line 23.3: 1540-1231 (I) The conversion from argument number 1 to "boost::cv_status" uses the user-defined conversion "boost::cv_status::cv_status(enum_type)" followed by "an lvalue-to-rvalue transformation". 45 "./boost/thread/cv_status.hpp", line 23.3: 1540-1231 (I) The conversion from argument number 1 to "boost::cv_status" uses the user-defined conversion "boost::cv_status::cv_status(enum_type)" followed by "an lvalue-to-rvalue transformation". 46 }}} 47 32 48 33 49 Regards, Gert