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:
@@ -91,5 +91,5 @@ string test::stripPreReleaseWarning(string const& _stderrContent)
|
||||
};
|
||||
|
||||
string output = regex_replace(_stderrContent, preReleaseWarningRegex, "");
|
||||
return regex_replace(move(output), noOutputRegex, "");
|
||||
return regex_replace(std::move(output), noOutputRegex, "");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user