38a39
> #include "messages.hh"
72,76c73,74
< if (_reader) {
< SC_REPORT_ERROR(
< "(E104) sc_fifo<T> cannot have more than one reader",
< "");
< }
---
> if (_reader)
> SC_REPORT_ERROR(SC_ID_MORE_THAN_ONE_FIFO_READER_, "");
80,84c78,79
< if (_writer) {
< SC_REPORT_ERROR(
< "(E105) sc_fifo<T> cannot have more than one writer",
< "");
< }
---
> if (_writer)
> SC_REPORT_ERROR(SC_ID_MORE_THAN_ONE_FIFO_WRITER_, "");
87c82
< SC_REPORT_ERROR("(E107) bind interface to port failed",
---
> SC_REPORT_ERROR(SC_ID_BIND_IF_TO_PORT_,