3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-05 17:14:08 +00:00

kernel: const Wire* overload -> Wire* !!!

This commit is contained in:
Eddie Hung 2020-03-26 16:21:30 -07:00
parent f97b90e40b
commit 6ca7844cec

View file

@ -300,7 +300,7 @@ struct SigMap
add(bit);
}
inline void add(const Wire *wire) { return add(RTLIL::SigSpec(wire)); }
inline void add(Wire *wire) { return add(RTLIL::SigSpec(wire)); }
void apply(RTLIL::SigBit &bit) const
{