diff options
-rw-r--r-- | src/systemc/ext/channel/sc_in.hh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/systemc/ext/channel/sc_in.hh b/src/systemc/ext/channel/sc_in.hh index 3fea8a803..85d089dbc 100644 --- a/src/systemc/ext/channel/sc_in.hh +++ b/src/systemc/ext/channel/sc_in.hh @@ -225,6 +225,8 @@ class sc_in<bool> : public sc_port<sc_signal_in_if<bool>, 1> _negFinder(*this, &sc_signal_in_if<bool>::negedge_event) {} + using sc_port<sc_signal_in_if<bool>, 1>::bind; + virtual void bind(const sc_signal_in_if<bool> &i) { @@ -390,6 +392,8 @@ class sc_in<sc_dt::sc_logic> : _negFinder(*this, &sc_signal_in_if<sc_dt::sc_logic>::negedge_event) {} + using sc_port<sc_signal_in_if<sc_dt::sc_logic>, 1>::bind; + virtual void bind(const sc_signal_in_if<sc_dt::sc_logic> &i) { |