mirror of
https://github.com/boostorg/optional.git
synced 2025-07-29 20:17:21 +02:00
Fixed error reported by Edward Diener
[SVN r40706]
This commit is contained in:
@ -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& rhs ) ;
|
||||
|
||||
template<class InPlaceFactory> optional& operator = ( InPlaceFactory const& f ) ;
|
||||
template<InPlaceFactory> optional& operator = ( InPlaceFactory const& f ) ;
|
||||
|
||||
template<class TypedInPlaceFactory> optional& operator = ( TypedInPlaceFactory const& f ) ;
|
||||
template<TypedInPlaceFactory> optional& operator = ( TypedInPlaceFactory const& f ) ;
|
||||
|
||||
T const& get() const ;
|
||||
T& get() ;
|
||||
|
Reference in New Issue
Block a user