Ticket #1420: boost_1_34_1_optional.diff
File boost_1_34_1_optional.diff, 428 bytes (added by , 15 years ago) |
---|
-
optional.hpp
550 550 // (NOTE: On BCB, this operator is not actually called and left is left UNMODIFIED in case of a throw) 551 551 optional& operator= ( optional const& rhs ) 552 552 { 553 this->assign( rhs) ;553 this->assign( static_cast<base const&>(rhs) ) ; 554 554 return *this ; 555 555 }