From 25d1fa2e2cb3a9f505a173ba3d95f9f1e67dcd16 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Thu, 14 Apr 2005 20:34:59 +0000 Subject: [PATCH] Changed uint for unsigned int. --- src/osgPlugins/flt/ReaderWriterATTR.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/osgPlugins/flt/ReaderWriterATTR.cpp b/src/osgPlugins/flt/ReaderWriterATTR.cpp index 4fe9820ea..d693bab93 100644 --- a/src/osgPlugins/flt/ReaderWriterATTR.cpp +++ b/src/osgPlugins/flt/ReaderWriterATTR.cpp @@ -50,7 +50,7 @@ typedef signed char int8; typedef unsigned char uint8; typedef signed short int16; typedef unsigned short uint16; -typedef signed int int32; +typedef signed int int32; typedef unsigned int uint32; typedef float float32; typedef double float64; @@ -765,7 +765,7 @@ class ReaderWriterATTR : public osgDB::ReaderWriter { // Get the character index of the FLT_VER option in the option // string - uint optionIndex = options->getOptionString().find("FLT_VER"); + unsigned int optionIndex = options->getOptionString().find("FLT_VER"); // Default to zero for the version if it's not found if (optionIndex == std::string::npos)