Worklet: remove unused var in WaveletDWT

This commit is contained in:
Vicente Adolfo Bolea Sanchez 2022-07-09 13:27:03 -04:00
parent c661e4afba
commit 464524a4b2

@ -1436,7 +1436,6 @@ public:
}
}
vtkm::Id sigConvolvedLen = L[0] + L[1]; // approx + detail coeffs
vtkm::Id addLen; // for extension
bool oddLow = true;
bool oddHigh = true;
@ -1447,10 +1446,6 @@ public:
if (doSymConv)
{
addLen = filterLen / 2;
if (sigInLen % 2 != 0)
{
sigConvolvedLen += 1;
}
}
else
{