diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-07-15 14:44:15 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-07-15 14:44:15 +0200 |
commit | 243da3993c138d33063f633aa3996a8a710ea396 (patch) | |
tree | 6d49a3f964f395773c06e258b6550a4d386fbec3 /build/variable | |
parent | 3c2bc8595e9d6cf6ff35079231c3aab474a38130 (diff) |
Implement project-qualified names/prerequisites, two-stage import
Diffstat (limited to 'build/variable')
-rw-r--r-- | build/variable | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/build/variable b/build/variable index 835fde1..bb29138 100644 --- a/build/variable +++ b/build/variable @@ -72,8 +72,9 @@ namespace build list_value () = default; list_value (names d): names (std::move (d)) {} - list_value (std::string d) {emplace_back (std::move (d));} + list_value (name n) {emplace_back (std::move (n));} list_value (dir_path d) {emplace_back (std::move (d));} + list_value (std::string d) {emplace_back (std::move (d));} virtual value_ptr clone () const {return value_ptr (new list_value (*this));} |