From fcfd4dae07216954e8026bfeee1973aa99fd63b5 Mon Sep 17 00:00:00 2001 From: Joel de Guzman Date: Sun, 15 Sep 2002 21:43:03 +0000 Subject: [PATCH] minor tweak... [SVN r15346] --- include/boost/python/module.hpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/boost/python/module.hpp b/include/boost/python/module.hpp index a455ca41..9f5f4d21 100644 --- a/include/boost/python/module.hpp +++ b/include/boost/python/module.hpp @@ -90,8 +90,7 @@ class module : public detail::module_base // convert sig to a type_list (see detail::get_signature in signature.hpp) // before calling detail::define_with_defaults. detail::define_with_defaults( - name, stubs, default_call_policies(), - *this, detail::get_signature(sig), doc); + name, stubs, *this, detail::get_signature(sig)); } };