Make old compiler happy.

This commit is contained in:
Daniel Kirchner 2020-10-06 22:37:52 +02:00
parent 120851315a
commit c4e79a23cf

View File

@ -360,6 +360,6 @@ void StackToMemoryMover::FunctionCallRewriter::operator()(Block& _block)
result.emplace_back(std::move(_statement));
result += std::move(statementsToSuffix);
statementsToSuffix.clear();
return result;
return optional<vector<Statement>>(move(result));
});
}