1
0
Fork 0

YASIM member initialization in class Vector

This commit is contained in:
Henning Stahlke 2017-11-18 21:16:46 +01:00
parent 1194b09525
commit 030403db5f

View file

@ -21,9 +21,9 @@ public:
private: private:
void realloc(); void realloc();
int _nelem; int _nelem {0};
int _sz; int _sz {0};
void** _array; void** _array {nullptr};
}; };
inline Vector::Vector() inline Vector::Vector()