From: Robert Bradshaw Date: Fri, 19 Feb 2010 02:06:38 +0000 (-0800) Subject: terminology fix X-Git-Tag: 0.13.beta0~340^2 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=fa55b74732e496a11bbb016d06dfd0148525c513;p=cython.git terminology fix --- 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)