mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Add std:: qualifier to move() calls
This commit is contained in:
@@ -244,8 +244,8 @@ AssemblyItems ComputeMethod::findRepresentation(u256 const& _value)
|
||||
bigint newGas = gasNeeded(newRoutine);
|
||||
if (newGas < bestGas)
|
||||
{
|
||||
bestGas = move(newGas);
|
||||
routine = move(newRoutine);
|
||||
bestGas = std::move(newGas);
|
||||
routine = std::move(newRoutine);
|
||||
}
|
||||
}
|
||||
return routine;
|
||||
|
||||
Reference in New Issue
Block a user