From b08789b784200611bc0e340668bec6c26851c692 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Thu, 27 Mar 2008 22:13:55 +0000 Subject: [PATCH] Silence unused parameter warning. [SVN r43887] --- include/boost/shared_ptr.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/shared_ptr.hpp b/include/boost/shared_ptr.hpp index c570791..1c0ad80 100644 --- a/include/boost/shared_ptr.hpp +++ b/include/boost/shared_ptr.hpp @@ -261,7 +261,7 @@ public: // constructor that doesn't trigger enable_shared_from_this code, needed // for enable_shared_from_this internal implementation - template shared_ptr(Y * p, D d, detail::ignore_enable_shared_from_this_tag tag): + template shared_ptr(Y * p, D d, detail::ignore_enable_shared_from_this_tag): px(p), pn(p, d) {}