added "override" to TcpConnection::onUnblocked(). Fixes #504
This commit is contained in:
parent
19b7136a64
commit
38eff4019d
|
|
@ -132,7 +132,7 @@ private:
|
||||||
* Method that is called when the AMQP connection is no longer blocked.
|
* Method that is called when the AMQP connection is no longer blocked.
|
||||||
* @param connection The connection that is no longer blocked
|
* @param connection The connection that is no longer blocked
|
||||||
*/
|
*/
|
||||||
virtual void onUnblocked(Connection *connection)
|
virtual void onUnblocked(Connection *connection) override
|
||||||
{
|
{
|
||||||
// pass to user space
|
// pass to user space
|
||||||
if (_handler) _handler->onUnblocked(this);
|
if (_handler) _handler->onUnblocked(this);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue