mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
MDEV-33746 Supply missing override markings
Find and fix missing virtual override markings. Updates cmake maintainer flags to include -Wsuggest-override and -Winconsistent-missing-override.
This commit is contained in:
committed by
Dave Gosselin
parent
ab448d4b34
commit
db0c28eff8
@ -75,11 +75,11 @@ struct TP_connection_generic :public TP_connection
|
||||
TP_connection_generic(CONNECT* c);
|
||||
~TP_connection_generic();
|
||||
|
||||
virtual int init() { return 0; };
|
||||
virtual void set_io_timeout(int sec);
|
||||
virtual int start_io();
|
||||
virtual void wait_begin(int type);
|
||||
virtual void wait_end();
|
||||
int init() override { return 0; };
|
||||
void set_io_timeout(int sec) override;
|
||||
int start_io() override;
|
||||
void wait_begin(int type) override;
|
||||
void wait_end() override;
|
||||
|
||||
thread_group_t* thread_group;
|
||||
TP_connection_generic* next_in_queue;
|
||||
|
Reference in New Issue
Block a user