Skip to content
Snippets Groups Projects
Commit 017a6d06 authored by Stéphane Albert's avatar Stéphane Albert
Browse files

STYLE: indented some code.

parent edf80bbf
Branches
Tags
No related merge requests found
......@@ -271,14 +271,14 @@ PersistentHistogramVectorImageFilter<TInputImage>
PixelType vectorValue = it.Get();
bool skipSampleNoData=false;
if(m_NoDataFlag)
bool skipSampleNoData=false;
if(m_NoDataFlag)
{
unsigned int itComp=0;
while( itComp < vectorValue.GetSize() )
{
if (vectorValue[itComp]==m_NoDataValue)
{
while( itComp < vectorValue.GetSize() )
{
if (vectorValue[itComp]==m_NoDataValue)
{
skipSampleNoData=true;
itComp++;
}
......@@ -287,7 +287,7 @@ PersistentHistogramVectorImageFilter<TInputImage>
skipSampleNoData=false;
break;
}
}
}
}
if( !skipSampleNoData )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment