Internals: Fix hasing node informational on AstCaseItem
This commit is contained in:
parent
eb6ce0799c
commit
84173048d2
|
|
@ -280,6 +280,9 @@ class HasherVisitor final : public VNVisitorConst {
|
|||
iterateConstNull(nodep->funcp());
|
||||
});
|
||||
}
|
||||
void visit(AstCaseItem* nodep) override {
|
||||
m_hash += hashNodeAndIterate(nodep, false, HASH_CHILDREN, []() {});
|
||||
}
|
||||
void visit(AstNodeFTaskRef* nodep) override {
|
||||
m_hash += hashNodeAndIterate(nodep, false, HASH_CHILDREN, [this, nodep]() {
|
||||
iterateConstNull(nodep->taskp());
|
||||
|
|
|
|||
Loading…
Reference in New Issue