From 5d6a9c05817f395341908312132db5e4c3d6cdff Mon Sep 17 00:00:00 2001 From: Daniel Wallin Date: Wed, 14 Jan 2004 11:04:43 +0000 Subject: [PATCH] *** empty log message *** [SVN r1871] --- doc/named_params.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/named_params.rst b/doc/named_params.rst index 4463c56..e3cd5f5 100755 --- a/doc/named_params.rst +++ b/doc/named_params.rst @@ -219,9 +219,9 @@ references that aren't bound to a keyword isn't possible without some help. :: float x; - foo(value = x); // float& - foo(x); // type is float const&, need help! - foo(ref(x)); // type is float& + foo(value = x); // held type is float& + foo(x); // held type is float const&, need help! + foo(ref(x)); // held type is float& Instances of boost::reference_wrapper<> will un unwrapped to it's held reference type.