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

@@ -73,9 +73,9 @@ class LinkedListHead
private:
LinkedListElement iFirst;
LinkedListElement iLast;
uint32 iSize;
uint32 iSize{0};
public:
LinkedListHead(): iSize(0)
LinkedListHead()
{
// create empty list