From 9dca983e3336107c5865149821f5fbbc953dd2d6 Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Wed, 29 Nov 2000 14:18:37 +0000 Subject: [PATCH] changed name of extension_class_coerce to standard_coerce. [SVN r8358] --- src/gen_extclass.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/gen_extclass.py b/src/gen_extclass.py index 5180a3de..f8906970 100644 --- a/src/gen_extclass.py +++ b/src/gen_extclass.py @@ -707,8 +707,6 @@ class extension_instance : public instance // Template function implementations // -tuple extension_class_coerce(ref l, ref r); - template extension_class::extension_class() : extension_class_base(typeid(T).name()) @@ -729,7 +727,7 @@ void extension_class::def_standard_coerce() ref coerce_fct = dict().get_item(string("__coerce__")); if(coerce_fct.get() == 0) // not yet defined - this->def(&extension_class_coerce, "__coerce__"); + this->def(&standard_coerce, "__coerce__"); } template