From ffb201a068b05664e33828ad6c3424060d3fa891 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sun, 15 Jun 2014 23:04:29 -0400 Subject: [PATCH] Parser - Pruned the unnecessary filter sub branches off the parse tree for branches tagged with MODIFICATION. --- src/Parser.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Parser.cpp b/src/Parser.cpp index b2a6ad49c..f1dfbaca2 100644 --- a/src/Parser.cpp +++ b/src/Parser.cpp @@ -1410,6 +1410,7 @@ void Parser::findModifications () { (*i)->unTag ("?"); (*i)->tag ("MODIFICATION"); + (*i)->removeAllBranches (); } } }