Fix recursion protection.

This commit is contained in:
chriseth
2021-08-19 12:51:54 +02:00
parent 4b038e3f02
commit 8926274000
2 changed files with 10 additions and 10 deletions
+2 -1
View File
@@ -56,10 +56,11 @@ public:
private:
Expression simplify(Expression _expression);
Expression simplifyRecursively(Expression _expression);
Dialect const& m_dialect;
std::map<YulString, AssignedValue> const& m_variableValues;
size_t m_recursionCounter = 0;
size_t m_counter = 0;
};
}