mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-13 04:28:18 +00:00
Fixed SigPool::del() method
This commit is contained in:
parent
ff965424c2
commit
117489f95a
|
@ -68,7 +68,7 @@ struct SigPool
|
||||||
void del(const SigPool &other)
|
void del(const SigPool &other)
|
||||||
{
|
{
|
||||||
for (auto &bit : other.bits)
|
for (auto &bit : other.bits)
|
||||||
bits.insert(bit);
|
bits.erase(bit);
|
||||||
}
|
}
|
||||||
|
|
||||||
void expand(RTLIL::SigSpec from, RTLIL::SigSpec to)
|
void expand(RTLIL::SigSpec from, RTLIL::SigSpec to)
|
||||||
|
|
Loading…
Reference in a new issue