From fa55b74732e496a11bbb016d06dfd0148525c513 Mon Sep 17 00:00:00 2001 From: Robert Bradshaw Date: Thu, 18 Feb 2010 18:06:38 -0800 Subject: [PATCH] terminology fix --- Cython/Compiler/Symtab.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cython/Compiler/Symtab.py b/Cython/Compiler/Symtab.py index 1e6cdbe8..631c5f89 100644 --- a/Cython/Compiler/Symtab.py +++ b/Cython/Compiler/Symtab.py @@ -437,7 +437,7 @@ class Scope(object): if type.is_cpp_class and visibility != 'extern': constructor = type.scope.lookup(u'') if constructor is not None and PyrexTypes.best_match([], constructor.all_alternatives()) is None: - error(pos, "C++ class must have an empty constructor to be stack allocated") + error(pos, "C++ class must have a default constructor to be stack allocated") entry = self.declare(name, cname, type, pos, visibility) entry.is_variable = 1 self.control_flow.set_state((), (name, 'initalized'), False) -- 2.26.2