mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-02-15 08:16:08 +00:00
refactor(Core): apply clang-tidy modernize-use-override (#3817)
This commit is contained in:
@@ -49,7 +49,7 @@ public:
|
||||
_indexTable.AsT = nullptr;
|
||||
}
|
||||
|
||||
~DBCStorage()
|
||||
~DBCStorage() override
|
||||
{
|
||||
delete[] reinterpret_cast<char*>(_indexTable.AsT);
|
||||
}
|
||||
|
||||
@@ -31,7 +31,7 @@ public:
|
||||
};
|
||||
|
||||
RealmSocket(void);
|
||||
virtual ~RealmSocket(void);
|
||||
~RealmSocket(void) override;
|
||||
|
||||
size_t recv_len(void) const;
|
||||
bool recv_soft(char* buf, size_t len);
|
||||
@@ -44,14 +44,14 @@ public:
|
||||
|
||||
uint16 getRemotePort(void) const;
|
||||
|
||||
virtual int open(void*);
|
||||
int open(void*) override;
|
||||
|
||||
virtual int close(u_long);
|
||||
int close(u_long) override;
|
||||
|
||||
virtual int handle_input(ACE_HANDLE = ACE_INVALID_HANDLE);
|
||||
virtual int handle_output(ACE_HANDLE = ACE_INVALID_HANDLE);
|
||||
int handle_input(ACE_HANDLE = ACE_INVALID_HANDLE) override;
|
||||
int handle_output(ACE_HANDLE = ACE_INVALID_HANDLE) override;
|
||||
|
||||
virtual int handle_close(ACE_HANDLE = ACE_INVALID_HANDLE, ACE_Reactor_Mask = ACE_Event_Handler::ALL_EVENTS_MASK);
|
||||
int handle_close(ACE_HANDLE = ACE_INVALID_HANDLE, ACE_Reactor_Mask = ACE_Event_Handler::ALL_EVENTS_MASK) override;
|
||||
|
||||
void set_session(Session* session);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user