Merge pull request #4824 from YosysHQ/emil/fix-witness-stack-overflow

yw: fix unintensional recursion in hash_into
This commit is contained in:
Emil J 2024-12-19 15:30:57 +01:00 committed by GitHub
commit 301d9677b0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 1 deletions

View File

@ -35,7 +35,10 @@ struct IdPath : public std::vector<RTLIL::IdString>
bool has_address() const { int tmp; return get_address(tmp); };
bool get_address(int &addr) const;
Hasher hash_into(Hasher h) const { h.eat(*this); return h; }
Hasher hash_into(Hasher h) const {
h.eat(static_cast<const std::vector<RTLIL::IdString>&&>(*this));
return h;
}
};
struct WitnessHierarchyItem {