mirror of https://gitee.com/bigwinds/arangodb
Fix override warnings
This commit is contained in:
parent
b3357a644e
commit
0ab683d1f8
|
@ -129,7 +129,7 @@ public:
|
|||
* @brief 1. Deal with appendEntries to slaves.
|
||||
* 2. Report success of write processes.
|
||||
*/
|
||||
void run ();
|
||||
void run () override;
|
||||
void beginShutdown () override;
|
||||
|
||||
/**
|
||||
|
|
|
@ -93,12 +93,12 @@ class ApplicationAgency : virtual public arangodb::rest::ApplicationFeature {
|
|||
public:
|
||||
|
||||
void setupOptions(std::map<std::string,
|
||||
arangodb::basics::ProgramOptionsDescription>&);
|
||||
arangodb::basics::ProgramOptionsDescription>&) override;
|
||||
|
||||
bool prepare();
|
||||
bool start();
|
||||
bool open();
|
||||
void close();
|
||||
bool prepare() override;
|
||||
bool start() override;
|
||||
bool open() override;
|
||||
void close() override;
|
||||
|
||||
agent_t* agent() const;
|
||||
|
||||
|
|
|
@ -84,7 +84,7 @@ public:
|
|||
/**
|
||||
* @brief My daily business
|
||||
*/
|
||||
void run();
|
||||
void run() override;
|
||||
|
||||
/**
|
||||
* @brief Who is leading
|
||||
|
|
Loading…
Reference in New Issue