mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-19 03:45:43 +00:00
refactor(Core): apply clang-tidy modernize-use-override (#3817)
This commit is contained in:
@@ -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