From 35a2d208d5162f1fbc9e3641055773a466f995c0 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Thu, 13 Jan 2005 14:01:22 +0000 Subject: [PATCH] Another R const& to R change. [SVN r26691] --- bind.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bind.html b/bind.html index c1b5a2c..5c8abca 100644 --- a/bind.html +++ b/bind.html @@ -683,7 +683,7 @@ namespace

template<class R, class T, class A1> unspecified-6-1 bind(R T::*f, A1 a1)

-

Effects: Equivalent to bind<R const &>(boost::mem_fn(f), +

Effects: Equivalent to bind<R>(boost::mem_fn(f), a1);

template<class R, class F, class A1, class A2> unspecified-7