mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +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
@@ -69,10 +69,10 @@ public:
|
||||
~table_session_connect();
|
||||
|
||||
protected:
|
||||
virtual void make_row(PFS_thread *pfs, uint ordinal);
|
||||
void make_row(PFS_thread *pfs, uint ordinal) override;
|
||||
virtual bool thread_fits(PFS_thread *thread);
|
||||
virtual int read_row_values(TABLE *table, unsigned char *buf,
|
||||
Field **fields, bool read_all);
|
||||
int read_row_values(TABLE *table, unsigned char *buf,
|
||||
Field **fields, bool read_all) override;
|
||||
protected:
|
||||
/** Current row. */
|
||||
row_session_connect_attrs m_row;
|
||||
|
Reference in New Issue
Block a user