refactor(Core): apply clang-tidy modernize-use-default-member-init (#3827)

This commit is contained in:
Francesco Borzì
2020-12-07 20:34:06 +01:00
committed by GitHub
parent 1cf39b3d22
commit c5a35efd7b
47 changed files with 352 additions and 366 deletions

View File

@@ -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