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:
@@ -1293,7 +1293,7 @@ bool ContractCompiler::visit(Return const& _return)
|
||||
|
||||
Type const* expectedType;
|
||||
if (expression->annotation().type->category() == Type::Category::Tuple || types.size() != 1)
|
||||
expectedType = TypeProvider::tuple(move(types));
|
||||
expectedType = TypeProvider::tuple(std::move(types));
|
||||
else
|
||||
expectedType = types.front();
|
||||
compileExpression(*expression, expectedType);
|
||||
|
||||
Reference in New Issue
Block a user