mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-02-16 00:36:07 +00:00
refactor(Core): apply clang-tidy modernize-use-default-member-init (#3827)
This commit is contained in:
@@ -75,9 +75,9 @@ enum AccountDataType
|
||||
|
||||
struct AccountData
|
||||
{
|
||||
AccountData() : Time(0), Data("") {}
|
||||
AccountData() : Data("") {}
|
||||
|
||||
time_t Time;
|
||||
time_t Time{0};
|
||||
std::string Data;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user