mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Make old compiler happy.
This commit is contained in:
parent
120851315a
commit
c4e79a23cf
@ -360,6 +360,6 @@ void StackToMemoryMover::FunctionCallRewriter::operator()(Block& _block)
|
|||||||
result.emplace_back(std::move(_statement));
|
result.emplace_back(std::move(_statement));
|
||||||
result += std::move(statementsToSuffix);
|
result += std::move(statementsToSuffix);
|
||||||
statementsToSuffix.clear();
|
statementsToSuffix.clear();
|
||||||
return result;
|
return optional<vector<Statement>>(move(result));
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user