mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-21 20:56:23 +00:00
refactor(Core): apply clang-tidy modernize-use-override (#3817)
This commit is contained in:
@@ -19,7 +19,7 @@ class ACSoapRunnable : public acore::Runnable
|
||||
public:
|
||||
ACSoapRunnable() : _port(0) { }
|
||||
|
||||
void run();
|
||||
void run() override;
|
||||
|
||||
void SetListenArguments(const std::string& host, uint16 port)
|
||||
{
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
class CliRunnable : public acore::Runnable
|
||||
{
|
||||
public:
|
||||
void run();
|
||||
void run() override;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
@@ -47,7 +47,7 @@ extern int m_ServiceStatus;
|
||||
class WorldServerSignalHandler : public acore::SignalHandler
|
||||
{
|
||||
public:
|
||||
virtual void HandleSignal(int sigNum)
|
||||
void HandleSignal(int sigNum) override
|
||||
{
|
||||
switch (sigNum)
|
||||
{
|
||||
@@ -79,7 +79,7 @@ private:
|
||||
public:
|
||||
FreezeDetectorRunnable(uint32 freezeDelay) : _loops(0), _lastChange(0), _delayTime(freezeDelay) {}
|
||||
|
||||
void run()
|
||||
void run() override
|
||||
{
|
||||
if (!_delayTime)
|
||||
return;
|
||||
|
||||
@@ -19,8 +19,8 @@ class RARunnable : public acore::Runnable
|
||||
{
|
||||
public:
|
||||
RARunnable();
|
||||
virtual ~RARunnable();
|
||||
void run();
|
||||
~RARunnable() override;
|
||||
void run() override;
|
||||
|
||||
private:
|
||||
ACE_Reactor* m_Reactor;
|
||||
|
||||
@@ -15,13 +15,13 @@
|
||||
class WorldRunnable : public acore::Runnable
|
||||
{
|
||||
public:
|
||||
void run();
|
||||
void run() override;
|
||||
};
|
||||
|
||||
class AuctionListingRunnable : public acore::Runnable
|
||||
{
|
||||
public:
|
||||
void run();
|
||||
void run() override;
|
||||
};
|
||||
#endif
|
||||
/// @}
|
||||
|
||||
Reference in New Issue
Block a user