We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 281e474 commit a6bd8ffCopy full SHA for a6bd8ff
kernel/yw.h
@@ -35,7 +35,10 @@ struct IdPath : public std::vector<RTLIL::IdString>
35
bool has_address() const { int tmp; return get_address(tmp); };
36
bool get_address(int &addr) const;
37
38
- Hasher hash_into(Hasher h) const { h.eat(*this); return h; }
+ Hasher hash_into(Hasher h) const {
39
+ h.eat(static_cast<const std::vector<RTLIL::IdString>&&>(*this));
40
+ return h;
41
+ }
42
};
43
44
struct WitnessHierarchyItem {
0 commit comments