Changed int's to unsigned int's to avoid warnings

This commit is contained in:
Robert Osfield
2008-07-16 13:26:06 +00:00
parent 850034ab75
commit 5f0f80cab2
2 changed files with 5 additions and 5 deletions

View File

@@ -38,9 +38,9 @@ class OSG_EXPORT KdTree : public osg::Shape
{
BuildOptions();
int _numVerticesProcessed;
int _targetNumTrianglesPerLeaf;
int _maxNumLevels;
unsigned int _numVerticesProcessed;
unsigned int _targetNumTrianglesPerLeaf;
unsigned int _maxNumLevels;
};