From 966534e70919ab432058712b3855231281cc9891 Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Sat, 28 Oct 2000 22:34:29 +0000 Subject: [PATCH] Bug fix [SVN r8057] --- newtypes.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/newtypes.h b/newtypes.h index b8e82bc2..bdfcfa13 100644 --- a/newtypes.h +++ b/newtypes.h @@ -120,14 +120,14 @@ class TypeObject : public TypeObjectBase typedef T Instance; TypeObject(PyTypeObject* type_type, const char* name) - : Base(type_type) + : TypeObjectBase(type_type) { assert(name != 0); this->tp_name = const_cast(name); } TypeObject(PyTypeObject* type_type) - : Base(type_type) + : TypeObjectBase(type_type) { this->tp_name = const_cast(typeid(Instance).name()); }