Remove unnecessary move.

This commit is contained in:
chriseth 2020-04-23 12:13:26 +02:00
parent 2ea2267179
commit b864fe1c43

View File

@ -1069,7 +1069,7 @@ bool IRGeneratorForStatements::visit(InlineAssembly const& _inlineAsm)
solAssert(holds_alternative<yul::Block>(modified), "");
// Do not provide dialect so that we get the full type information.
m_code << yul::AsmPrinter()(std::get<yul::Block>(std::move(modified))) << "\n";
m_code << yul::AsmPrinter()(std::get<yul::Block>(modified)) << "\n";
return false;
}