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:
void realloc();
int _nelem;
int _sz;
void** _array;
int _nelem {0};
int _sz {0};
void** _array {nullptr};
};
inline Vector::Vector()