From ccae1cc43016fd66fbcfba5c6bd4fcc1d670bdf6 Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Tue, 4 Jun 2002 04:18:47 +0000 Subject: [PATCH] cleanup refcounting/naming [SVN r14077] --- include/boost/python/module.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/python/module.hpp b/include/boost/python/module.hpp index 41286ac2..61d8f664 100644 --- a/include/boost/python/module.hpp +++ b/include/boost/python/module.hpp @@ -31,7 +31,7 @@ class module : public detail::module_base template module& add(class_ const& c) { - this->generic_add_class(c.object()); + this->add_class(c.object()); return *this; }