@@ -309,7 +309,7 @@ class ClientConnect : ClientProto::NotifyCallback,
309309 }
310310 }
311311
312- virtual void bulk_resolve_done () override
312+ void bulk_resolve_done () override
313313 {
314314 if (!halt && generation == 0 )
315315 new_client ();
@@ -390,7 +390,7 @@ class ClientConnect : ClientProto::NotifyCallback,
390390 return true ;
391391 }
392392
393- virtual void client_proto_connected () override
393+ void client_proto_connected () override
394394 {
395395 conn_timer.cancel ();
396396 conn_timer_pending = false ;
@@ -431,7 +431,7 @@ class ClientConnect : ClientProto::NotifyCallback,
431431 self->restart_wait_callback (gen, error); });
432432 }
433433
434- virtual void client_proto_auth_pending_timeout (int timeout) override
434+ void client_proto_auth_pending_timeout (int timeout) override
435435 {
436436 if (conn_timer_pending)
437437 {
@@ -490,7 +490,7 @@ class ClientConnect : ClientProto::NotifyCallback,
490490 queue_restart (delay);
491491 }
492492
493- virtual void client_proto_terminate () override
493+ void client_proto_terminate () override
494494 {
495495 if (!halt)
496496 {
@@ -698,22 +698,22 @@ class ClientConnect : ClientProto::NotifyCallback,
698698
699699 // ClientLifeCycle::NotifyCallback callbacks
700700
701- virtual void cln_stop () override
701+ void cln_stop () override
702702 {
703703 thread_safe_stop ();
704704 }
705705
706- virtual void cln_pause (const std::string &reason) override
706+ void cln_pause (const std::string &reason) override
707707 {
708708 thread_safe_pause (reason);
709709 }
710710
711- virtual void cln_resume () override
711+ void cln_resume () override
712712 {
713713 thread_safe_resume ();
714714 }
715715
716- virtual void cln_reconnect (int seconds) override
716+ void cln_reconnect (int seconds) override
717717 {
718718 thread_safe_reconnect (seconds);
719719 }
0 commit comments