mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Performance: Replace string by special single-copy YulString class.
This commit is contained in:
@@ -40,7 +40,7 @@ MovableChecker::MovableChecker(Expression const& _expression)
|
||||
void MovableChecker::operator()(Identifier const& _identifier)
|
||||
{
|
||||
ASTWalker::operator()(_identifier);
|
||||
m_variableReferences.insert(_identifier.name);
|
||||
m_variableReferences.emplace(_identifier.name);
|
||||
}
|
||||
|
||||
void MovableChecker::operator()(FunctionalInstruction const& _instr)
|
||||
|
||||
Reference in New Issue
Block a user