Internals: Fix hasher message

This commit is contained in:
Wilson Snyder 2026-02-23 03:34:37 -05:00
parent 97fd6a5a13
commit 7c923bb330
1 changed files with 3 additions and 0 deletions

View File

@ -560,6 +560,9 @@ class HasherVisitor final : public VNVisitorConst {
void visit(AstCExprUser* nodep) override {
m_hash += hashNodeAndIterate(nodep, HASH_DTYPE, HASH_CHILDREN, []() {});
}
void visit(AstWith* nodep) override {
m_hash += hashNodeAndIterate(nodep, HASH_DTYPE, HASH_CHILDREN, []() {});
}
public:
// CONSTRUCTORS