From 4be201beba434d8af4d0a94b4bef6a7c1a07c848 Mon Sep 17 00:00:00 2001 From: Douglas Gregor Date: Sat, 15 Mar 2003 23:12:35 +0000 Subject: [PATCH] Updated to reflect BoostBook changes [SVN r17941] --- doc/ref.xml | 47 ++++++++++++++++++++++++++--------------------- 1 file changed, 26 insertions(+), 21 deletions(-) diff --git a/doc/ref.xml b/doc/ref.xml index 30f1494..cb40d30 100644 --- a/doc/ref.xml +++ b/doc/ref.xml @@ -126,55 +126,60 @@ T - + T& - Constructs a + Constructs a reference_wrapper object that stores a reference to - t. + t. - Does not throw. + Does not throw. - - - The stored reference. - Does not throw. + + + T& + The stored reference. + Does not throw. - - The stored reference. - Does not throw. + + T& + The stored reference. + Does not throw. - - A pointer to the object referenced by the stored reference. - Does not throw. + + T* + A pointer to the object referenced by the stored reference. + Does not throw. - + - + + reference_wrapper<T> T& - reference_wrapper<T>(t) + reference_wrapper<T>(t) - Does not throw. + Does not throw. - + + reference_wrapper<T const> T const& - reference_wrapper<T const>(t) + reference_wrapper<T const>(t) - Does not throw. + Does not throw.