22a23,24
> #include <sstream>
>
59d60
< static sc_core::sc_event none;
61c62,66
< report_error(sc_core::SC_ID_FIND_EVENT_, "port is not bound");
---
> std::ostringstream out;
> out << "port is not bound: port '" << port()->name() <<
> "' (" << port()->kind() << ")";
> SC_REPORT_ERROR(sc_core::SC_ID_FIND_EVENT_, out.str().c_str());
> static sc_core::sc_event none;