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.