Value initialize the array

Should silence a gcc 4.9 warning
This commit is contained in:
Paul Fd 2020-03-15 23:10:21 +01:00
parent 19a4395045
commit 95e7dd706b

View file

@ -96,7 +96,7 @@ private:
void splineFill(const bool fillStatus[NumValues]);
private:
std::array<float, NumValues> _points { };
std::array<float, NumValues> _points = {};
};
/**