From c446786d46146f179a97cc49d0d6a5cb4a5cf1cb Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sun, 24 Aug 2014 15:17:14 -0400 Subject: [PATCH] Parser - ::getDataLocation needs to scan all nodes. You'd think I'd learn this by now. --- src/Parser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Parser.cpp b/src/Parser.cpp index 61369ca9d..3c5d07251 100644 --- a/src/Parser.cpp +++ b/src/Parser.cpp @@ -537,7 +537,7 @@ void Parser::getDataLocation (Path& data) data = location; std::vector nodes; - collect (nodes); + collect (nodes, collectAll); std::vector ::iterator i; for (i = nodes.begin (); i != nodes.end (); ++i) {