mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-15 10:00:28 +00:00
refactor(Core): apply clang-tidy modernize-use-equals-default (#3834)
This commit is contained in:
@@ -188,7 +188,7 @@ AuthSocket::AuthSocket(RealmSocket& socket) :
|
||||
}
|
||||
|
||||
// Close patch file descriptor before leaving
|
||||
AuthSocket::~AuthSocket() { }
|
||||
AuthSocket::~AuthSocket() = default;
|
||||
|
||||
// Accept the connection
|
||||
void AuthSocket::OnAccept()
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
class RealmAcceptor : public ACE_Acceptor<RealmSocket, ACE_SOCK_Acceptor>
|
||||
{
|
||||
public:
|
||||
RealmAcceptor() { }
|
||||
RealmAcceptor() = default;
|
||||
virtual ~RealmAcceptor()
|
||||
{
|
||||
if (reactor())
|
||||
|
||||
Reference in New Issue
Block a user