mirror of https://github.com/YosysHQ/yosys.git
yw: fix unintensional recursion in hash_into
This commit is contained in:
parent
281e474d45
commit
a6bd8ff3e5
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue