mirror of https://github.com/YosysHQ/yosys.git
Merge pull request #4824 from YosysHQ/emil/fix-witness-stack-overflow
yw: fix unintensional recursion in hash_into
This commit is contained in:
commit
301d9677b0
|
@ -35,7 +35,10 @@ struct IdPath : public std::vector<RTLIL::IdString>
|
||||||
bool has_address() const { int tmp; return get_address(tmp); };
|
bool has_address() const { int tmp; return get_address(tmp); };
|
||||||
bool get_address(int &addr) const;
|
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 {
|
struct WitnessHierarchyItem {
|
||||||
|
|
Loading…
Reference in New Issue