$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r81863 - in branches/release: . libs libs/smart_ptr
From: glenfe_at_[hidden]
Date: 2012-12-11 13:42:49
Author: glenfe
Date: 2012-12-11 13:42:48 EST (Tue, 11 Dec 2012)
New Revision: 81863
URL: http://svn.boost.org/trac/boost/changeset/81863
Log:
Merged revision(s) 81844 from trunk:
Correct link to  http://www.stroustrup.com/wrapper.pdf in sp_techniques.html
........
Properties modified: 
   branches/release/   (props changed)
   branches/release/libs/   (props changed)
   branches/release/libs/smart_ptr/   (props changed)
Text files modified: 
   branches/release/libs/smart_ptr/sp_techniques.html |     2 +-                                      
   1 files changed, 1 insertions(+), 1 deletions(-)
Modified: branches/release/libs/smart_ptr/sp_techniques.html
==============================================================================
--- branches/release/libs/smart_ptr/sp_techniques.html	(original)
+++ branches/release/libs/smart_ptr/sp_techniques.html	2012-12-11 13:42:48 EST (Tue, 11 Dec 2012)
@@ -624,7 +624,7 @@
                 <h2><A name="wrapper">Using <code>shared_ptr</code> to wrap member function calls</A></h2>
                 <p><code>shared_ptr</code> implements the ownership semantics required from the <code>Wrap</code>/<code>CallProxy</code>
                         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:</p>
                 <pre>template<class T> class pointer
 {