From 6ca7844ceca934064e8914c9dd0853eaaa495bad Mon Sep 17 00:00:00 2001 From: Eddie Hung Date: Thu, 26 Mar 2020 16:21:30 -0700 Subject: kernel: const Wire* overload -> Wire* !!! --- kernel/sigtools.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'kernel/sigtools.h') diff --git a/kernel/sigtools.h b/kernel/sigtools.h index 10b39a89e..c631fa481 100644 --- a/kernel/sigtools.h +++ b/kernel/sigtools.h @@ -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 { -- cgit v1.2.3