From 9863467152f23005e8494476e2c7ce365e27fc6f Mon Sep 17 00:00:00 2001 From: Glen Fernandes Date: Mon, 10 Dec 2012 23:48:00 +0000 Subject: [PATCH] Correct link to http://www.stroustrup.com/wrapper.pdf in sp_techniques.html [SVN r81844] --- sp_techniques.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sp_techniques.html b/sp_techniques.html index 4b7363b..f869279 100644 --- a/sp_techniques.html +++ b/sp_techniques.html @@ -624,7 +624,7 @@ public:

Using shared_ptr to wrap member function calls

shared_ptr implements the ownership semantics required from the Wrap/CallProxy scheme described in Bjarne Stroustrup's article "Wrapping C++ Member Function - Calls" (available online at http://www.research.att.com/~bs/wrapper.pdf). + Calls" (available online at http://www.stroustrup.com/wrapper.pdf). An implementation is given below:

template<class T> class pointer
 {