]> git.mxchange.org Git - simgear.git/blobdiff - simgear/misc/props_test.cxx
fg_traits.hxx -> sg_traits.hxx
[simgear.git] / simgear / misc / props_test.cxx
index 3fa2333b1fdee3ff84f3bb52d600d54a3835ce35..3ee2552d35349a809e21f7e4d4cd0c6509f56ef5 100644 (file)
@@ -12,9 +12,9 @@
 #include STL_IOSTREAM
 #include "props.hxx"
 
-#if !defined(FG_HAVE_NATIVE_SGI_COMPILERS)
-FG_USING_STD(cout);
-FG_USING_STD(endl);
+#if !defined(SG_HAVE_NATIVE_SGI_COMPILERS)
+SG_USING_STD(cout);
+SG_USING_STD(endl);
 #endif
 
 
@@ -317,7 +317,7 @@ test_property_nodes ()
   cout << "Looking for all /hack[0]/bar children" << endl;
   vector<SGPropertyNode *> bar = child->getChildren("bar");
   cout << "There are " << bar.size() << " matches" << endl;
-  for (int i = 0; i < bar.size(); i++)
+  for (int i = 0; i < (int)bar.size(); i++)
     cout << bar[i]->getName() << '[' << bar[i]->getIndex() << ']' << endl;
   cout << endl;