Commit 67f3aebb authored by aws-taylor's avatar aws-taylor Committed by Stefan Behnel

Remove stray ";" from limited API code to work with -Wpedantic (GH-3326)

parent ca5d90ef
......@@ -2497,10 +2497,10 @@ class ModuleNode(Nodes.Node, Nodes.BlockNode):
module_state.putln("#endif")
module_state_defines.putln("#endif")
module_state_clear.putln("return 0;")
module_state_clear.putln("};")
module_state_clear.putln("}")
module_state_clear.putln("#endif")
module_state_traverse.putln("return 0;")
module_state_traverse.putln("};")
module_state_traverse.putln("}")
module_state_traverse.putln("#endif")
def generate_module_state_defines(self, env, code):
......
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