mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Fix move bug.
This commit is contained in:
parent
cfc1eb0029
commit
b18d5ab257
@ -73,7 +73,7 @@ void SSAReverser::operator()(Block& _block)
|
|||||||
VariableDeclaration{
|
VariableDeclaration{
|
||||||
std::move(varDecl->location),
|
std::move(varDecl->location),
|
||||||
std::move(varDecl->variables),
|
std::move(varDecl->variables),
|
||||||
std::make_unique<Expression>(std::move(assignment->variableNames.front()))
|
std::make_unique<Expression>(assignment->variableNames.front())
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user