Value initialize the array
Should silence a gcc 4.9 warning
This commit is contained in:
parent
19a4395045
commit
95e7dd706b
1 changed files with 1 additions and 1 deletions
|
|
@ -96,7 +96,7 @@ private:
|
|||
void splineFill(const bool fillStatus[NumValues]);
|
||||
|
||||
private:
|
||||
std::array<float, NumValues> _points { };
|
||||
std::array<float, NumValues> _points = {};
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue