2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-22 17:32:55 +00:00

cleanup refcounting/naming

[SVN r14077]
This commit is contained in:
Dave Abrahams
2002-06-04 04:18:47 +00:00
parent 241a5bf4e5
commit ccae1cc430

View File

@@ -31,7 +31,7 @@ class module : public detail::module_base
template <class T, class Bases, class HolderGenerator>
module& add(class_<T,Bases,HolderGenerator> const& c)
{
this->generic_add_class(c.object());
this->add_class(c.object());
return *this;
}