aboutsummaryrefslogtreecommitdiffstats
path: root/libyul/optimiser/ExpressionJoiner.h
diff options
context:
space:
mode:
Diffstat (limited to 'libyul/optimiser/ExpressionJoiner.h')
-rw-r--r--libyul/optimiser/ExpressionJoiner.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libyul/optimiser/ExpressionJoiner.h b/libyul/optimiser/ExpressionJoiner.h
index 4f06cc0f..0cc61981 100644
--- a/libyul/optimiser/ExpressionJoiner.h
+++ b/libyul/optimiser/ExpressionJoiner.h
@@ -93,9 +93,9 @@ private:
bool isLatestStatementVarDeclJoinable(Identifier const& _identifier);
private:
- Block* m_currentBlock = nullptr; ///< Pointer to currently block holding the visiting statement.
- size_t m_latestStatementInBlock = 0; ///< Offset to m_currentBlock's statements of the last visited statement.
- std::map<std::string, size_t> m_references; ///< Holds reference counts to all variable declarations in current block.
+ Block* m_currentBlock = nullptr; ///< Pointer to current block holding the statement being visited.
+ size_t m_latestStatementInBlock = 0; ///< Offset to m_currentBlock's statements of the last visited statement.
+ std::map<YulString, size_t> m_references; ///< Holds reference counts to all variable declarations in current block.
};
}