mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-23 13:46:24 +00:00
refactor(Core): apply clang-tidy modernize-use-default-member-init (#3827)
This commit is contained in:
@@ -53,7 +53,7 @@ struct IntervalTimer
|
||||
public:
|
||||
|
||||
IntervalTimer()
|
||||
: _interval(0), _current(0)
|
||||
|
||||
{
|
||||
}
|
||||
|
||||
@@ -97,8 +97,8 @@ public:
|
||||
|
||||
private:
|
||||
|
||||
time_t _interval;
|
||||
time_t _current;
|
||||
time_t _interval{0};
|
||||
time_t _current{0};
|
||||
};
|
||||
|
||||
struct TimeTracker
|
||||
|
||||
Reference in New Issue
Block a user