From 06ba35cd42e87475a57a8d0290060f1b27248401 Mon Sep 17 00:00:00 2001 From: Fernando Cacciola Date: Fri, 2 Nov 2007 23:06:42 +0000 Subject: [PATCH] Fixed error reported by Edward Diener [SVN r40706] --- doc/optional.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/optional.html b/doc/optional.html index e216db5..b9ef36b 100644 --- a/doc/optional.html +++ b/doc/optional.html @@ -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() ;