2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-29 19:52:16 +00:00

module name bug fix

[SVN r13374]
This commit is contained in:
Dave Abrahams
2002-04-05 05:11:10 +00:00
parent 4bb5ee4b17
commit 9137b38fb9

View File

@@ -11,11 +11,11 @@ struct E
const D fe2(const C&, const C&) {return D();}
};
BOOST_PYTHON_MODULE_INIT(m)
BOOST_PYTHON_MODULE_INIT(bienstman2_ext)
{
using namespace boost::python;
module m("m");
module m("bienstman2_ext");
m
.add(class_<C>("C"))