You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-29 08:21:15 +03:00
chore(codestyle): mark virtual methods as override
This commit is contained in:
committed by
Leonid Fedorov
parent
ad80ab40aa
commit
0ab03c7258
@ -25,7 +25,7 @@
|
||||
|
||||
#include <iostream>
|
||||
#include <string>
|
||||
#include <time.h>
|
||||
#include <ctime>
|
||||
#include <boost/filesystem/path.hpp>
|
||||
|
||||
#include "we_xmlop.h"
|
||||
@ -54,7 +54,7 @@ class XMLJob : public XMLOp
|
||||
/**
|
||||
* @brief Default Destructor
|
||||
*/
|
||||
EXPORT ~XMLJob();
|
||||
EXPORT ~XMLJob() override;
|
||||
|
||||
/**
|
||||
* @brief Utility to generate a full path name for a Job XML file name
|
||||
@ -115,7 +115,7 @@ class XMLJob : public XMLOp
|
||||
* @brief Process node
|
||||
* @param pParentNode Node to be parsed from XML
|
||||
*/
|
||||
EXPORT bool processNode(xmlNode* pParentNode);
|
||||
EXPORT bool processNode(xmlNode* pParentNode) override;
|
||||
|
||||
/**
|
||||
* @brief Set timezone
|
||||
|
Reference in New Issue
Block a user