Commit abc120e0 authored by Vitja Makarov's avatar Vitja Makarov

Add semicolon after __PyxRefNannyDeclareContext

parent 0e75afb7
...@@ -1361,7 +1361,7 @@ class CCodeWriter(object): ...@@ -1361,7 +1361,7 @@ class CCodeWriter(object):
return self.globalstate.lookup_filename(filename) return self.globalstate.lookup_filename(filename)
def put_declare_refcount_context(self): def put_declare_refcount_context(self):
self.putln('__Pyx_RefNannyDeclareContext') self.putln('__Pyx_RefNannyDeclareContext;')
def put_setup_refcount_context(self, name): def put_setup_refcount_context(self, name):
self.putln('__Pyx_RefNannySetupContext("%s");' % name) self.putln('__Pyx_RefNannySetupContext("%s");' % name)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment