Commit cf9fc1a9 authored by Stefan Behnel's avatar Stefan Behnel

remove redundant ";" from C code

parent e0fd2b3c
...@@ -6586,7 +6586,7 @@ class TryExceptStatNode(StatNode): ...@@ -6586,7 +6586,7 @@ class TryExceptStatNode(StatNode):
else: else:
# try block cannot raise exceptions, but we had to allocate the temps above, # try block cannot raise exceptions, but we had to allocate the temps above,
# so just keep the C compiler from complaining about them being unused # so just keep the C compiler from complaining about them being unused
save_exc.putln("if (%s); else {/*mark used*/};" % '||'.join(exc_save_vars)) save_exc.putln("if (%s); else {/*mark used*/}" % '||'.join(exc_save_vars))
def restore_saved_exception(): def restore_saved_exception():
pass pass
......
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