Fixed error reported by Edward Diener

[SVN r40706]
This commit is contained in:
Fernando Cacciola
2007-11-02 23:06:42 +00:00
parent 3499d477dc
commit 06ba35cd42

View File

@ -331,9 +331,9 @@ class optional
template<class U> explicit optional ( optional<U> const& rhs ) ;
template<class InPlaceFactory> explicit optional ( InPlaceFactory const& f ) ;
template<InPlaceFactory> explicit optional ( InPlaceFactory const& f ) ;
template<class TypedInPlaceFactory> explicit optional ( TypedInPlaceFactory const& f ) ;
template<TypedInPlaceFactory> explicit optional ( TypedInPlaceFactory const& f ) ;
optional& operator = ( none_t ) ;
@ -343,9 +343,9 @@ class optional
template<class U> optional& operator = ( optional<U> const&amp rhs ) ;
template<class InPlaceFactory> optional& operator = ( InPlaceFactory const&amp f ) ;
template<InPlaceFactory> optional& operator = ( InPlaceFactory const&amp f ) ;
template<class TypedInPlaceFactory> optional& operator = ( TypedInPlaceFactory const&amp f ) ;
template<TypedInPlaceFactory> optional& operator = ( TypedInPlaceFactory const&amp f ) ;
T const& get() const ;
T& get() ;