terminology fix
authorRobert Bradshaw <robertwb@math.washington.edu>
Fri, 19 Feb 2010 02:06:38 +0000 (18:06 -0800)
committerRobert Bradshaw <robertwb@math.washington.edu>
Fri, 19 Feb 2010 02:06:38 +0000 (18:06 -0800)
Cython/Compiler/Symtab.py

index 1e6cdbe8d4eb6f661700a6e597233ff1848ed033..631c5f89e15477c4a663eabc6eaedb9ec3943094 100644 (file)
@@ -437,7 +437,7 @@ class Scope(object):
         if type.is_cpp_class and visibility != 'extern':
             constructor = type.scope.lookup(u'<init>')
             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)