Skip to content

Commit

Permalink
Fixing unsigned vs int comparisson
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewkaufman committed Aug 26, 2013
1 parent 7c28613 commit 8040264
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/IECoreHoudini/FromHoudiniGroupConverter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ FromHoudiniGeometryConverter::Convertability FromHoudiniGroupConverter::canConve
}

bool externalGroups = false;
for ( int i=0; i < primGroups.entries(); ++i )
for ( unsigned i=0; i < primGroups.entries(); ++i )
{
const GA_ElementGroup *group = primGroups[i];
if ( group->getInternal() )
Expand Down

0 comments on commit 8040264

Please sign in to comment.