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:
@@ -245,10 +245,10 @@ vector<SyntaxTestError> CommonSyntaxTest::parseExpectations(istream& _stream)
|
||||
|
||||
string errorMessage(it, line.end());
|
||||
expectations.emplace_back(SyntaxTestError{
|
||||
move(errorType),
|
||||
move(errorId),
|
||||
move(errorMessage),
|
||||
move(sourceName),
|
||||
std::move(errorType),
|
||||
std::move(errorId),
|
||||
std::move(errorMessage),
|
||||
std::move(sourceName),
|
||||
locationStart,
|
||||
locationEnd
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user