id summary reporter owner description type status milestone component version severity resolution keywords cc
5378 Docs for optional::operator= with inplacefactory missing Yechezkel Mett Fernando Cacciola "The documentation doesn't seem to mention that optional::operator= can take an InPlaceFactory. The only assignment operators mentioned are
{{{
optional& optional::operator= ( T const& rhs ) ;
optional& optional::operator= ( optional const& rhs ) ;
template optional& optional::operator= ( optional const& rhs ) ;
}}}
(and the equivalents for T&) none of which can take an InPlaceFactory. Presumably there should be something equivalent to the
{{{
template explicit optional::optional( InPlaceFactory const& f );
template explicit optional::optional( TypedInPlaceFactory const& f );
}}}
constructors." Bugs closed To Be Determined optional Boost 1.46.0 Problem fixed optional in_place InPlaceFactory