50a51
> #include "systemc/ext/dt/bit/messages.hh"
75c76
< SC_REPORT_ERROR("(E204) value is not valid", msg.str().c_str());
---
> SC_REPORT_ERROR(sc_core::SC_ID_VALUE_NOT_VALID_, msg.str().c_str());
83c84
< SC_REPORT_ERROR("(E204) value is not valid", msg.str().c_str());
---
> SC_REPORT_ERROR(sc_core::SC_ID_VALUE_NOT_VALID_, msg.str().c_str());
90,96c91,94
< if ((int)m_val == Log_Z) {
< SC_REPORT_WARNING(
< "(W211) sc_logic value 'Z' cannot be converted to bool", 0);
< } else {
< SC_REPORT_WARNING(
< "(W212) sc_logic value 'X' cannot be converted to bool", 0);
< }
---
> if ((int)m_val == Log_Z)
> SC_REPORT_WARNING(sc_core::SC_ID_LOGIC_Z_TO_BOOL_, 0);
> else
> SC_REPORT_WARNING(sc_core::SC_ID_LOGIC_X_TO_BOOL_, 0);