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

Remove extra ';' thanks to "Ralf W. Grosse-Kunstleve" <rwgk@cci.lbl.gov>

[SVN r8095]
This commit is contained in:
Dave Abrahams
2000-11-01 19:17:05 +00:00
parent 2ba0b22831
commit cdaaedd3fa

View File

@@ -26,7 +26,7 @@ void Module::add(Ptr x, const char* name)
{
PyObject* dictionary = PyModule_GetDict( m_module );
PyDict_SetItemString(dictionary, const_cast<char*>(name), x.get());
};
}
void Module::add(PyTypeObject* x, const char* name /*= 0*/)
{