From 9f9c07a9555e5c6a9e79e0cacc127931c6df45ff Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Fri, 22 Aug 2014 23:41:57 -0400 Subject: [PATCH] Parser - In ::findBinary, it is not necessary to prune branches. --- src/Parser.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Parser.cpp b/src/Parser.cpp index b8d263c87..b693e56eb 100644 --- a/src/Parser.cpp +++ b/src/Parser.cpp @@ -339,7 +339,6 @@ void Parser::findBinary () if (_tree->_branches.size () >= 1) { _tree->_branches[0]->unTag ("?"); - _tree->_branches[0]->removeAllBranches (); _tree->_branches[0]->tag ("BINARY"); std::string binary = _tree->_branches[0]->attribute ("raw"); std::string::size_type slash = binary.rfind ('/');