Skip to content
This repository was archived by the owner on May 27, 2026. It is now read-only.

Commit 3ca6f7b

Browse files
committed
COMP: Fix warning, initialize bool.
1 parent a9d451e commit 3ca6f7b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/itkWaveletFrequencyInverseUndecimatedTest.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ itkWaveletFrequencyInverseUndecimatedTest(int argc, char *argv[])
202202
const unsigned int inputBands = atoi( argv[4] );
203203
const std::string waveletFunction = argv[5];
204204
const std::string inputUseWaveletFilterBankPyramid = argv[6];
205-
bool useWaveletFilterBankPyramid;
205+
bool useWaveletFilterBankPyramid = false;
206206
if (inputUseWaveletFilterBankPyramid == "reuseFilterBankPyramid")
207207
{
208208
useWaveletFilterBankPyramid = true;

0 commit comments

Comments
 (0)