Fix initialization of array, fixes test.

This commit is contained in:
Axel Naumann 2019-07-15 21:05:14 +02:00 committed by SFT
parent 4fef27091e
commit be780f4812

View File

@ -14,7 +14,7 @@
extern "C" int printf(const char*,...);
class A {
int m_A[2] = 0;
int m_A[2] = {};
public:
A() {}
~A() { printf("A::~A()\n"); }