$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: pdimov_at_[hidden]
Date: 2008-03-27 18:13:55
Author: pdimov
Date: 2008-03-27 18:13:55 EDT (Thu, 27 Mar 2008)
New Revision: 43887
URL: http://svn.boost.org/trac/boost/changeset/43887
Log:
Silence unused parameter warning.
Text files modified: 
   trunk/boost/shared_ptr.hpp |     2 +-                                      
   1 files changed, 1 insertions(+), 1 deletions(-)
Modified: trunk/boost/shared_ptr.hpp
==============================================================================
--- trunk/boost/shared_ptr.hpp	(original)
+++ trunk/boost/shared_ptr.hpp	2008-03-27 18:13:55 EDT (Thu, 27 Mar 2008)
@@ -261,7 +261,7 @@
 
 // constructor that doesn't trigger enable_shared_from_this code, needed
 // for enable_shared_from_this internal implementation
-    template<class Y, class D> shared_ptr(Y * p, D d, detail::ignore_enable_shared_from_this_tag tag):
+    template<class Y, class D> shared_ptr(Y * p, D d, detail::ignore_enable_shared_from_this_tag):
       px(p), pn(p, d)
     {}