From 69ee6e23759bf98efa5c12dadda81545b76d9acf Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Thu, 2 Mar 2006 21:24:57 +0000 Subject: [PATCH] Fixed an 'unused parameter' warning. [SVN r33204] --- include/boost/function/function_template.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/function/function_template.hpp b/include/boost/function/function_template.hpp index c6e6676..3aacea1 100644 --- a/include/boost/function/function_template.hpp +++ b/include/boost/function/function_template.hpp @@ -290,7 +290,7 @@ namespace boost { // Function pointers template - void init(FunctionPtr f, function_ptr_tag) + void init(FunctionPtr /*f*/, function_ptr_tag) { typedef typename BOOST_FUNCTION_GET_FUNCTION_INVOKER< FunctionPtr,