added "override" to TcpConnection::onUnblocked(). Fixes #504

This commit is contained in:
Emiel Bruijntjes 2023-07-13 21:33:36 +02:00
parent 19b7136a64
commit 38eff4019d
1 changed files with 1 additions and 1 deletions

View File

@ -132,7 +132,7 @@ private:
* Method that is called when the AMQP connection 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
if (_handler) _handler->onUnblocked(this);