]> git.mxchange.org Git - flightgear.git/commitdiff
Patch from Cameron Moore:
authordavid <david>
Thu, 18 Jul 2002 22:32:50 +0000 (22:32 +0000)
committerdavid <david>
Thu, 18 Jul 2002 22:32:50 +0000 (22:32 +0000)
* Fixed (un)signed comparisons

src/Model/model.cxx

index 64621ea0c67429af8df04b4b0b33b99a99a261db..8e20a812adff8e32479835c6409a782d033c4117 100644 (file)
@@ -151,7 +151,7 @@ read_interpolation_table (const SGPropertyNode * props)
   if (table_node != 0) {
     SGInterpTable * table = new SGInterpTable();
     vector<SGPropertyNode_ptr> entries = table_node->getChildren("entry");
-    for (int i = 0; i < entries.size(); i++)
+    for (unsigned int i = 0; i < entries.size(); i++)
       table->addEntry(entries[i]->getDoubleValue("ind", 0.0),
                      entries[i]->getDoubleValue("dep", 0.0));
     return table;
@@ -176,7 +176,7 @@ FG3DModel::~FG3DModel ()
   // since the nodes are attached to the scene graph, they'll be
   // deleted automatically
 
-  int i;
+  unsigned int i;
   for (i = 0; i < _animations.size(); i++)
     delete _animations[i];
 }