]> git.mxchange.org Git - flightgear.git/commitdiff
Added using namespace std for compilers that support this.
authorcurt <curt>
Mon, 6 Jul 1998 21:34:33 +0000 (21:34 +0000)
committercurt <curt>
Mon, 6 Jul 1998 21:34:33 +0000 (21:34 +0000)
Scenery/material.hxx
Scenery/obj.cxx
Scenery/tile.hxx

index a5611c506aaee10a66ffdacc00430e7d5750fa3d..a4254dce6281218442ba537bd9819e61bc803c4e 100644 (file)
@@ -48,6 +48,9 @@ extern "C" void *memset(void *, int, size_t);
 
 #include <string>          // Standard C++ string library
 #include <map>             // STL associative "array"
+#ifdef NEEDNAMESPACESTD
+using namespace std;
+#endif
 
 #include "tile.hxx"
 
@@ -116,6 +119,9 @@ extern fgMATERIAL_MGR material_mgr;
 
 
 // $Log$
+// Revision 1.9  1998/07/06 21:34:33  curt
+// Added using namespace std for compilers that support this.
+//
 // Revision 1.8  1998/06/17 21:36:39  curt
 // Load and manage multiple textures defined in the Materials library.
 // Boost max material fagments for each material property to 800.
index 66b8509b3b7a0d2b2ba71fc9a5b453f76bd3dc9b..a37877942d25ae139096e40230bc352008e095c0 100644 (file)
@@ -42,6 +42,9 @@ extern "C" void *memset(void *, int, size_t);
 
 #include <string>  // Standard C++ library
 #include <map>     // STL
+#ifdef NEEDNAMESPACESTD
+using namespace std;
+#endif
 
 #include <Debug/fg_debug.h>
 #include <Include/fg_constants.h>
@@ -438,6 +441,9 @@ int fgObjLoad(char *path, fgTILE *tile) {
 
 
 // $Log$
+// Revision 1.16  1998/07/06 21:34:33  curt
+// Added using namespace std for compilers that support this.
+//
 // Revision 1.15  1998/07/04 00:54:28  curt
 // Added automatic mipmap generation.
 //
index 8eafb627a1d24ae3fb87fe5edc7fff9c091e1c26..ce31cd410fcd79940c7d9159195fd600f23d8412 100644 (file)
@@ -47,6 +47,9 @@ extern "C" void *memset(void *, int, size_t);
 #endif
 
 #include <list>         // STL list
+#ifdef NEEDNAMESPACESTD
+using namespace std;
+#endif
 
 #include <Bucket/bucketutils.h>
 #include <Include/fg_types.h>
@@ -118,6 +121,9 @@ public:
 
 
 // $Log$
+// Revision 1.9  1998/07/06 21:34:34  curt
+// Added using namespace std for compilers that support this.
+//
 // Revision 1.8  1998/07/04 00:54:30  curt
 // Added automatic mipmap generation.
 //