diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2020-06-09 07:40:54 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2020-06-09 07:40:54 +0200 |
commit | b8cffb11a45add241e4b8420ba96e116efccfbd9 (patch) | |
tree | 70bc6987e60c7415b351111517a4bc7eea74f93c /libbuild2/variable.cxx | |
parent | dd1cb295722a049fe21c8d0311cb1823ccb0e508 (diff) |
Make metadata variable prefix mandatory
While we could automatically set it if the target is imported, there is
nothing we can do if the target is used in the same project. So to avoid
confusion we make it mandatory.
Diffstat (limited to 'libbuild2/variable.cxx')
-rw-r--r-- | libbuild2/variable.cxx | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/libbuild2/variable.cxx b/libbuild2/variable.cxx index 9009fdc..79d0018 100644 --- a/libbuild2/variable.cxx +++ b/libbuild2/variable.cxx @@ -483,11 +483,8 @@ namespace build2 // uint64_t value // uint64_t value_traits<uint64_t>:: - convert (name&& n, name* r) + convert (const name& n, const name* r) { - // Note: in some places we reply on this function not - // changing the passed name. - // if (r == nullptr && n.simple ()) { try |