From: curt Date: Mon, 6 Jul 1998 21:34:33 +0000 (+0000) Subject: Added using namespace std for compilers that support this. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=39c1facaef3c91a111f16eab6d4491141e2aa9ee;p=flightgear.git Added using namespace std for compilers that support this. --- diff --git a/Scenery/material.hxx b/Scenery/material.hxx index a5611c506..a4254dce6 100644 --- a/Scenery/material.hxx +++ b/Scenery/material.hxx @@ -48,6 +48,9 @@ extern "C" void *memset(void *, int, size_t); #include // Standard C++ string library #include // 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. diff --git a/Scenery/obj.cxx b/Scenery/obj.cxx index 66b8509b3..a37877942 100644 --- a/Scenery/obj.cxx +++ b/Scenery/obj.cxx @@ -42,6 +42,9 @@ extern "C" void *memset(void *, int, size_t); #include // Standard C++ library #include // STL +#ifdef NEEDNAMESPACESTD +using namespace std; +#endif #include #include @@ -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. // diff --git a/Scenery/tile.hxx b/Scenery/tile.hxx index 8eafb627a..ce31cd410 100644 --- a/Scenery/tile.hxx +++ b/Scenery/tile.hxx @@ -47,6 +47,9 @@ extern "C" void *memset(void *, int, size_t); #endif #include // STL list +#ifdef NEEDNAMESPACESTD +using namespace std; +#endif #include #include @@ -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. //