Skip to content

Commit

Permalink
added "override" to TcpConnection::onUnblocked(). Fixes #504
Browse files Browse the repository at this point in the history
  • Loading branch information
EmielBruijntjes committed Jul 13, 2023
1 parent 19b7136 commit 38eff40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/amqpcpp/linux_tcp/tcpconnection.h
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ class TcpConnection :
* 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);
Expand Down

0 comments on commit 38eff40

Please sign in to comment.