Opened 10 years ago
Last modified 10 years ago
#7329 closed Bugs
$BOOST_ROOT/boost/thread/future.hpp does not compile on HPUX — at Version 2
Reported by: | Owned by: | viboes | |
---|---|---|---|
Milestone: | Boost 1.52.0 | Component: | thread |
Version: | Boost 1.51.0 | Severity: | Showstopper |
Keywords: | HPUX | Cc: |
Description (last modified by )
Using compiler: aCC: HP C/aC++ B3910B A.06.20 [May 13 2008]
$BOOST_ROOT/boost/thread/future.hpp
CHANGE:: line:603 FROM
for(count_type i=0;i<count;++i) { #if defined __DECCXX || defined __SUNPRO_CC locks[i]=boost::unique_lock<boost::mutex>(futures[i].future_->mutex).move(); #else locks[i]=boost::unique_lock<boost::mutex>(futures[i].future_->mutex); #endif }
T0:
for(count_type i=0;i<count;++i) { #if defined __DECCXX || defined __SUNPRO_CC || defined __hpux locks[i]=boost::unique_lock<boost::mutex>(futures[i].future_->mutex).move(); #else locks[i]=boost::unique_lock<boost::mutex>(futures[i].future_->mutex); #endif }
Change History (2)
comment:1 by , 10 years ago
Status: | new → assigned |
---|---|
Version: | Boost 1.52.0 → Boost 1.51.0 |
comment:2 by , 10 years ago
Description: | modified (diff) |
---|
Note:
See TracTickets
for help on using tickets.