You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-30 19:23:07 +03:00
chore(codestyle): mark virtual methods as override
This commit is contained in:
committed by
Leonid Fedorov
parent
ad80ab40aa
commit
0ab03c7258
@ -201,7 +201,7 @@ class IDBDataFile
|
||||
* Constructor - takes the filename to be stored in a member variable
|
||||
* for logging purposes
|
||||
*/
|
||||
IDBDataFile(const char* fname);
|
||||
explicit IDBDataFile(const char* fname);
|
||||
|
||||
/**
|
||||
* The close() method closes the file. It is defined as protected
|
||||
@ -226,9 +226,7 @@ inline IDBDataFile::IDBDataFile(const char* fname) : m_fname(fname), m_fColWidth
|
||||
{
|
||||
}
|
||||
|
||||
inline IDBDataFile::~IDBDataFile()
|
||||
{
|
||||
}
|
||||
inline IDBDataFile::~IDBDataFile() = default;
|
||||
|
||||
inline const std::string& IDBDataFile::name() const
|
||||
{
|
||||
|
Reference in New Issue
Block a user