mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-15 18:10:26 +00:00
refactor(Core): apply clang-tidy modernize-use-equals-default (#3834)
This commit is contained in:
@@ -11,9 +11,10 @@
|
||||
#include "RealmSocket.h"
|
||||
#include "Log.h"
|
||||
|
||||
RealmSocket::Session::Session() { }
|
||||
|
||||
RealmSocket::Session::~Session() { }
|
||||
RealmSocket::Session::Session() = default;
|
||||
|
||||
RealmSocket::Session::~Session() = default;
|
||||
|
||||
RealmSocket::RealmSocket() :
|
||||
input_buffer_(4096), session_(nullptr),
|
||||
|
||||
@@ -46,7 +46,7 @@ public:
|
||||
typedef std::map<std::string, Realm> RealmMap;
|
||||
|
||||
RealmList();
|
||||
~RealmList() { }
|
||||
~RealmList() = default;
|
||||
|
||||
static RealmList* instance();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user