From cdaaedd3faf8461455dcc68668aeebe3c63706d6 Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Wed, 1 Nov 2000 19:17:05 +0000 Subject: [PATCH] Remove extra ';' thanks to "Ralf W. Grosse-Kunstleve" [SVN r8095] --- module.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module.cpp b/module.cpp index d63c9cf6..f4e9f91f 100644 --- a/module.cpp +++ b/module.cpp @@ -26,7 +26,7 @@ void Module::add(Ptr x, const char* name) { PyObject* dictionary = PyModule_GetDict( m_module ); PyDict_SetItemString(dictionary, const_cast(name), x.get()); -}; +} void Module::add(PyTypeObject* x, const char* name /*= 0*/) {