mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-06 14:13:23 +00:00
Replaced RTLIL::SigSpec::operator!=() with inline version
This commit is contained in:
parent
5b51b67297
commit
85db102e13
2 changed files with 1 additions and 8 deletions
|
@ -575,7 +575,7 @@ public:
|
|||
|
||||
bool operator <(const RTLIL::SigSpec &other) const;
|
||||
bool operator ==(const RTLIL::SigSpec &other) const;
|
||||
bool operator !=(const RTLIL::SigSpec &other) const;
|
||||
inline bool operator !=(const RTLIL::SigSpec &other) const { return !(*this == other); }
|
||||
|
||||
bool is_fully_const() const;
|
||||
bool is_fully_def() const;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue