Linux compile fixes

This commit is contained in:
Jacob Storen
2015-06-03 04:22:34 -07:00
parent da5a1d8ff1
commit 9f87011ddd
3 changed files with 5 additions and 4 deletions

View File

@@ -76,7 +76,7 @@ size_t RigFemPartCollection::totalElementCount() const
{
size_t elementCount = 0;
for (size_t i = 0; i < partCount(); i++)
for (int i = 0; i < partCount(); i++)
{
elementCount += part(i)->elementCount();
}