From 1b39a03e9623e6b02aa41af37118b42b181dcc89 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Fri, 22 Aug 2014 23:47:07 -0400 Subject: [PATCH] Parser - ::applyOverrides looks at all nodes. --- src/Parser.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Parser.cpp b/src/Parser.cpp index 01562daef..955edab31 100644 --- a/src/Parser.cpp +++ b/src/Parser.cpp @@ -580,10 +580,10 @@ void Parser::getDataLocation (Path& data) // leaving only the plain args. void Parser::applyOverrides () { - context.debug ("Parse::applyOverrides"); + context.debug ("Parser::applyOverrides"); std::vector nodes; - collect (nodes, collectLeaf); + collect (nodes, collectAll); std::vector ::iterator i; for (i = nodes.begin (); i != nodes.end (); ++i) {