Change count to int

This commit is contained in:
Paul Fd 2020-03-15 02:22:04 +01:00
parent 4d52ce955f
commit 9606ea0dab

View file

@ -153,7 +153,7 @@ void Curve::splineFill(const bool fillStatus[NumValues])
{
std::array<double, NumValues> x;
std::array<double, NumValues> y;
unsigned count = 0;
int count = 0;
for (unsigned i = 0; i < NumValues; ++i) {
if (fillStatus[i]) {