From 8759984f52d310ed5dcf559e7c10d45ce9f28729 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Mon, 1 Sep 2008 15:29:22 +0000 Subject: [PATCH] Replaced uint with unsigned int --- src/osgPlugins/ive/ShapeAttributeList.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/osgPlugins/ive/ShapeAttributeList.cpp b/src/osgPlugins/ive/ShapeAttributeList.cpp index f04e902f8..18abebe4c 100644 --- a/src/osgPlugins/ive/ShapeAttributeList.cpp +++ b/src/osgPlugins/ive/ShapeAttributeList.cpp @@ -46,12 +46,12 @@ void ShapeAttributeList::read(DataInputStream* in) // Read ShapeAttributeList's properties // Read size of the list - uint count = in->readUInt(); + unsigned int count = in->readUInt(); resize(count); // Read elements of the list - for (uint i=0; i < count; i++) + for (unsigned int i=0; i < count; i++) { read(in, (*this)[i]); }