aboutsummaryrefslogtreecommitdiff
path: root/build/parser
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-07-15 14:44:15 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-07-15 14:44:15 +0200
commit243da3993c138d33063f633aa3996a8a710ea396 (patch)
tree6d49a3f964f395773c06e258b6550a4d386fbec3 /build/parser
parent3c2bc8595e9d6cf6ff35079231c3aab474a38130 (diff)
Implement project-qualified names/prerequisites, two-stage import
Diffstat (limited to 'build/parser')
-rw-r--r--build/parser9
1 files changed, 6 insertions, 3 deletions
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.
//