mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-25 22:56:24 +00:00
refactor(Core): apply clang-tidy modernize-use-default-member-init (#3827)
This commit is contained in:
@@ -128,7 +128,7 @@ class ThreatContainer
|
||||
public:
|
||||
typedef std::list<HostileReference*> StorageType;
|
||||
|
||||
ThreatContainer(): iDirty(false) { }
|
||||
ThreatContainer() { }
|
||||
|
||||
~ThreatContainer() { clearReferences(); }
|
||||
|
||||
@@ -173,7 +173,7 @@ private:
|
||||
void update();
|
||||
|
||||
StorageType iThreatList;
|
||||
bool iDirty;
|
||||
bool iDirty{false};
|
||||
};
|
||||
|
||||
//=================================================
|
||||
|
||||
Reference in New Issue
Block a user