From 243da3993c138d33063f633aa3996a8a710ea396 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Wed, 15 Jul 2015 14:44:15 +0200 Subject: Implement project-qualified names/prerequisites, two-stage import --- build/parser | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'build/parser') diff --git a/build/parser b/build/parser index 403fbaf..6eefccd 100644 --- a/build/parser +++ b/build/parser @@ -81,14 +81,17 @@ namespace build names (token& t, token_type& tt) { names_type ns; - names (t, tt, ns, 0, nullptr, nullptr); + names (t, tt, ns, 0, nullptr, nullptr, nullptr); return ns; } void names (token&, token_type&, - names_type&, std::size_t pair, - const dir_path* dir, const std::string* type); + names_type&, + std::size_t pair, + const std::string* prj, + const dir_path* dir, + const std::string* type); // Buildspec. // -- cgit v1.1