Fix mismatched XML tags

This commit is contained in:
Hackerpilot 2016-02-01 03:07:02 -08:00
parent 43fb7bc8e8
commit 49de812e47
1 changed files with 2 additions and 2 deletions

View File

@ -986,11 +986,11 @@ class XMLPrinter : ASTVisitor
{
output.writeln("<low>");
visit(index.low);
output.writeln("<low>");
output.writeln("</low>");
output.writeln("<high>");
visit(index.high);
output.writeln("<high>");
output.writeln("</high>");
}
else
visit(index.low);