]> git.mxchange.org Git - simgear.git/commitdiff
Fixes for native Irix compilers.
authorcurt <curt>
Mon, 2 Apr 2001 00:23:46 +0000 (00:23 +0000)
committercurt <curt>
Mon, 2 Apr 2001 00:23:46 +0000 (00:23 +0000)
simgear/compiler.h
simgear/misc/props_io.cxx

index 0c0124e6441dfa156457b1b483a8fd7d7501fbdb..c6294e0a87e6aaaae84b47e6711a1eb1141845c9 100644 (file)
 #  define STL_FSTREAM    <fstream.h>
 #  define STL_STDEXCEPT  <stdexcept>
 #  define STL_STRING     <string>
-#  define STL_STRSTREAM  <strstream>
+#  define STL_STRSTREAM  <strstream.h>
 
 #endif // Native SGI compilers
 
index 5b4e762591a7a392d637d381feb818ea2348ca40..c1cc903dfa35496508b7c0fdbcad3b4584b52d36 100644 (file)
@@ -112,7 +112,7 @@ PropsVisitor::startElement (const char * name, const XMLAttributes &atts)
   State &st = state();
 
   if (_level == 0) {
-    if (string(name) != "PropertyList") {
+    if (string(name) != (string)"PropertyList") {
       SG_LOG(SG_INPUT, SG_ALERT, "Root element name is " <<
             name << "; expected PropertyList");
       _ok = false;