$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: fernando.cacciola_at_[hidden]
Date: 2007-11-02 19:06:43
Author: fcacciola
Date: 2007-11-02 19:06:42 EDT (Fri, 02 Nov 2007)
New Revision: 40706
URL: http://svn.boost.org/trac/boost/changeset/40706
Log:
Fixed error reported by Edward Diener
Text files modified:
trunk/libs/optional/doc/optional.html | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
Modified: trunk/libs/optional/doc/optional.html
==============================================================================
--- trunk/libs/optional/doc/optional.html (original)
+++ trunk/libs/optional/doc/optional.html 2007-11-02 19:06:42 EDT (Fri, 02 Nov 2007)
@@ -331,9 +331,9 @@
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 @@
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() ;