1
0
mirror of synced 2026-02-05 16:24:43 +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
{