From c6587596b1ac3573e01e176809efe89a20bae59a Mon Sep 17 00:00:00 2001 From: "Ralf W. Grosse-Kunstleve" Date: Fri, 11 Jun 2004 00:11:11 +0000 Subject: [PATCH] unused variable names removed to avoid warning messages (Giulio Eulisse) [SVN r23080] --- include/boost/python/class.hpp | 2 +- include/boost/python/detail/caller.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/python/class.hpp b/include/boost/python/class.hpp index 31805a34..659f7fa7 100644 --- a/include/boost/python/class.hpp +++ b/include/boost/python/class.hpp @@ -562,7 +562,7 @@ class class_ : public objects::class_base template inline void def_default( char const* name - , Fn fn + , Fn , Helper const& helper , mpl::bool_) { diff --git a/include/boost/python/detail/caller.hpp b/include/boost/python/detail/caller.hpp index 56130982..b02f95e6 100644 --- a/include/boost/python/detail/caller.hpp +++ b/include/boost/python/detail/caller.hpp @@ -83,7 +83,7 @@ inline ResultConverter create_result_converter( template inline ResultConverter create_result_converter( - ArgPackage const& args_ + ArgPackage const& , ResultConverter* , ... )