From c4d8556bf718563d1d07e8c012ad111314599964 Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Sat, 28 Oct 2000 17:19:23 +0000 Subject: [PATCH] enable_named_method moved to detail [SVN r8039] --- extclass.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extclass.cpp b/extclass.cpp index c654afa3..caee6a83 100644 --- a/extclass.cpp +++ b/extclass.cpp @@ -296,7 +296,7 @@ void ExtensionClassBase::add_method(PyPtr method, const char* name) Function::add_to_namespace(method, name, target->dict().get()); // If it is a special member function it should be enabled both here and there. - enable_named_method(this, name); + detail::enable_named_method(this, name); } void ExtensionClassBase::add_default_method(Function* method, const char* name)