diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2019-08-25 07:09:15 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2019-08-25 10:46:44 +0200 |
commit | 113c43a42d20073428d46c04a1aa1cb305ea12d7 (patch) | |
tree | 8a2f7825f769dc6dcdfad2ae8b0aa564228e3031 /libbuild2/parser.cxx | |
parent | 5035f4ef68922ac758b1e4734e67d73c9228010b (diff) |
Split import into search and load steps
This allows us to load things in a separate context.
Diffstat (limited to 'libbuild2/parser.cxx')
-rw-r--r-- | libbuild2/parser.cxx | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libbuild2/parser.cxx b/libbuild2/parser.cxx index d346afc..c1787d6 100644 --- a/libbuild2/parser.cxx +++ b/libbuild2/parser.cxx @@ -1823,11 +1823,7 @@ namespace build2 atype = type::append; // Append subsequent values. } else if (atype == type::prepend) - { - // Note: multiple values will be prepended in reverse. - // val->prepend (move (r), var); - } else val->append (move (r), var); } |