64c64
< warn_unimpl(__PRETTY_FUNCTION__);
---
> this->warn_unimpl(__PRETTY_FUNCTION__);
70c70
< warn_unimpl(__PRETTY_FUNCTION__);
---
> this->warn_unimpl(__PRETTY_FUNCTION__);
76c76
< warn_unimpl(__PRETTY_FUNCTION__);
---
> this->warn_unimpl(__PRETTY_FUNCTION__);
82c82
< warn_unimpl(__PRETTY_FUNCTION__);
---
> this->warn_unimpl(__PRETTY_FUNCTION__);
88c88
< warn_unimpl(__PRETTY_FUNCTION__);
---
> this->warn_unimpl(__PRETTY_FUNCTION__);
95c95
< warn_unimpl(__PRETTY_FUNCTION__);
---
> this->warn_unimpl(__PRETTY_FUNCTION__);
102c102
< warn_unimpl(__PRETTY_FUNCTION__);
---
> this->warn_unimpl(__PRETTY_FUNCTION__);
109c109
< warn_unimpl(__PRETTY_FUNCTION__);
---
> this->warn_unimpl(__PRETTY_FUNCTION__);
116c116
< warn_unimpl(__PRETTY_FUNCTION__);
---
> this->warn_unimpl(__PRETTY_FUNCTION__);
123c123
< warn_unimpl(__PRETTY_FUNCTION__);
---
> this->warn_unimpl(__PRETTY_FUNCTION__);
130c130
< warn_unimpl(__PRETTY_FUNCTION__);
---
> this->warn_unimpl(__PRETTY_FUNCTION__);
159c159
< sc_port() : sc_port_b<IF>(sc_gen_unique_name("sc_port"), N, P) {}
---
> sc_port() : sc_port_b<IF>(N, P) {}
162a163,202
> // Deprecated binding constructors.
> explicit sc_port(const IF &interface) : sc_port_b<IF>(N, P)
> {
> this->warn_unimpl(__PRETTY_FUNCTION__);
> // Should warn that these are deprecated. See Accellera sc_port.h.
> sc_port_b<IF>::bind(const_cast<IF &>(interface));
> }
> sc_port(const char *name, const IF &interface) : sc_port_b<IF>(name, N, P)
> {
> this->warn_unimpl(__PRETTY_FUNCTION__);
> // Should warn that these are deprecated. See Accellera sc_port.h.
> sc_port_b<IF>::bind(const_cast<IF &>(interface));
> }
> explicit sc_port(sc_port_b<IF> &parent) : sc_port_b<IF>(N, P)
> {
> this->warn_unimpl(__PRETTY_FUNCTION__);
> // Should warn that these are deprecated. See Accellera sc_port.h.
> sc_port_b<IF>::bind(parent);
> }
> sc_port(const char *name, sc_port_b<IF> &parent) :
> sc_port_b<IF>(name, N, P)
> {
> this->warn_unimpl(__PRETTY_FUNCTION__);
> // Should warn that these are deprecated. See Accellera sc_port.h.
> sc_port_b<IF>::bind(parent);
> }
> explicit sc_port(sc_port<IF, N, P> &parent) : sc_port_b<IF>(N, P)
> {
> this->warn_unimpl(__PRETTY_FUNCTION__);
> // Should warn that these are deprecated. See Accellera sc_port.h.
> sc_port_b<IF>::bind(parent);
> }
> sc_port(const char *name, sc_port<IF, N, P> &parent) :
> sc_port_b<IF>(name, N, P)
> {
> this->warn_unimpl(__PRETTY_FUNCTION__);
> // Should warn that these are deprecated. See Accellera sc_port.h.
> sc_port_b<IF>::bind(parent);
> }
>