fix warning for calling a virtual function in constructor

This commit is contained in:
arvidn 2018-07-31 23:12:35 +02:00 committed by Arvid Norberg
parent 3de4e42fb7
commit 4cfe2b7c1b
1 changed files with 1 additions and 1 deletions

View File

@ -478,7 +478,7 @@ namespace aux {
// a connection is local if it was initiated by us.
// if it was an incoming connection, it is remote
bool is_outgoing() const override { return m_outgoing; }
bool is_outgoing() const final { return m_outgoing; }
bool received_listen_port() const { return m_received_listen_port; }
void received_listen_port()