32c32
< #include "base/logging.hh"
---
> #include "base/cprintf.hh"
87c87
< sc_port_base::warn_unimpl(const char *func) const
---
> sc_port_base::warn_port_constructor() const
89c89,95
< warn("%s not implemented.\n", func);
---
> static bool warned = false;
> if (!warned) {
> SC_REPORT_INFO(SC_ID_IEEE_1666_DEPRECATION_,
> "interface and/or port binding in port constructors "
> "is deprecated");
> warned = true;
> }