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:
@@ -178,7 +178,7 @@ vector<solidity::frontend::test::FunctionCall> TestFileParser::parseFunctionCall
|
||||
accept(Token::Newline, true);
|
||||
call.expectedSideEffects = parseFunctionCallSideEffects();
|
||||
|
||||
calls.emplace_back(move(call));
|
||||
calls.emplace_back(std::move(call));
|
||||
}
|
||||
}
|
||||
catch (TestParserError const& _e)
|
||||
|
||||
Reference in New Issue
Block a user