diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2022-10-19 20:50:28 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2022-10-20 12:22:11 +0300 |
commit | 86dd2edb5afdcde411361f117001a30bc30de901 (patch) | |
tree | 60d2dd6434a5feccab371ab40b32f17574c11f15 /libbuild2/build/script/parser.cxx | |
parent | b4bcbb30d4c132618bfbc53da088bc9c223daf5c (diff) |
Add support for for-loop element type
Diffstat (limited to 'libbuild2/build/script/parser.cxx')
-rw-r--r-- | libbuild2/build/script/parser.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbuild2/build/script/parser.cxx b/libbuild2/build/script/parser.cxx index 77bd21b..77fdfee 100644 --- a/libbuild2/build/script/parser.cxx +++ b/libbuild2/build/script/parser.cxx @@ -1562,7 +1562,7 @@ namespace build2 { value& lhs (environment_->assign (var)); - attributes_.push_back (move (val_attrs)); + attributes_.push_back (val_attrs); apply_value_attributes (&var, lhs, move (val), type::assign); }; |