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:
@@ -236,7 +236,7 @@ struct CFG
|
||||
|
||||
BasicBlock& makeBlock(std::shared_ptr<DebugData const> _debugData)
|
||||
{
|
||||
return blocks.emplace_back(BasicBlock{move(_debugData), {}, {}});
|
||||
return blocks.emplace_back(BasicBlock{std::move(_debugData), {}, {}});
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user