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:
@@ -30,7 +30,7 @@ Expression Substitution::translate(Expression const& _expression)
|
||||
{
|
||||
if (_expression.type() == typeid(Identifier))
|
||||
{
|
||||
string const& name = boost::get<Identifier>(_expression).name;
|
||||
YulString name = boost::get<Identifier>(_expression).name;
|
||||
if (m_substitutions.count(name))
|
||||
// No recursive substitution
|
||||
return ASTCopier().translate(*m_substitutions.at(name));
|
||||
|
||||
Reference in New Issue
Block a user