diff --git a/src/systemc/ext/channel/sc_signal.hh b/src/systemc/ext/channel/sc_signal.hh index b41af56bb0..5da4116601 100644 --- a/src/systemc/ext/channel/sc_signal.hh +++ b/src/systemc/ext/channel/sc_signal.hh @@ -158,6 +158,12 @@ class sc_signal : public sc_signal_inout_if, sc_channel_warn_unimpl(__PRETTY_FUNCTION__); } + // These members which store the current and future value of the signal + // are not specified in the standard but are referred to directly by one + // of the tests. + T m_cur_val; + T m_new_val; + private: // Disabled sc_signal(const sc_signal &) :