Commit 5380b5c7 authored by Cullen Rhodes's avatar Cullen Rhodes

Fix std::move error on temporary object

parent e37660ef
......@@ -1235,7 +1235,7 @@ Box* zip(BoxedTuple* containers) {
std::vector<BoxIterator> iterators;
iterators.reserve(containers->size());
for (auto&& range : ranges) {
iterators.push_back(std::move(range.begin()));
iterators.push_back(range.begin());
}
while (true) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment