Skip to content
Snippets Groups Projects
Commit 8e496280 authored by Guillaume Pasero's avatar Guillaume Pasero
Browse files

WRG: comparison between signed and unsigned fixed in HooverInstanceFilter

parent 84b60005
Branches
Tags
No related merge requests found
......@@ -223,7 +223,7 @@ void HooverInstanceFilter<TLabelMap>
blankRegion = LabelObjectType::New();
blankRegion->SetLabel(regionMS->GetLabel());
std::vector< std::string > attKeys = regionMS->GetAvailableAttributes();
for (int k=0; k<attKeys.size(); k++)
for (unsigned int k=0; k<attKeys.size(); k++)
{
if (attKeys[k].find("HooverInstance_") == 0)
{
......@@ -268,7 +268,7 @@ void HooverInstanceFilter<TLabelMap>
blankRegion = LabelObjectType::New();
blankRegion->SetLabel(labelObject->GetLabel());
std::vector< std::string > attKeys = labelObject->GetAvailableAttributes();
for (int k=0; k<attKeys.size(); k++)
for (unsigned int k=0; k<attKeys.size(); k++)
{
if (attKeys[k].find("HooverInstance_") == 0)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment