3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-06-06 06:03:23 +00:00

rtlil: duplicate remove2() for std::set<>

This commit is contained in:
Rick Altherr 2016-01-29 22:03:12 -08:00
parent 9e26147ccd
commit 12ebdef17c
2 changed files with 41 additions and 0 deletions

View file

@ -670,6 +670,8 @@ public:
void remove(const pool<RTLIL::SigBit> &pattern, RTLIL::SigSpec *other) const;
void remove2(const pool<RTLIL::SigBit> &pattern, RTLIL::SigSpec *other);
void remove2(const std::set<RTLIL::SigBit> &pattern, RTLIL::SigSpec *other);
void remove(int offset, int length = 1);
void remove_const();