]> git.mxchange.org Git - simgear.git/commitdiff
final fixes for SG_USING_STD removal
authorehofman <ehofman>
Tue, 29 Jul 2008 08:25:17 +0000 (08:25 +0000)
committerehofman <ehofman>
Tue, 29 Jul 2008 08:25:17 +0000 (08:25 +0000)
simgear/compiler.h
simgear/io/sg_binobj.cxx
simgear/props/props.cxx
simgear/sound/sample_openal.hxx
simgear/structure/subsystem_mgr.hxx

index 7d2e6da572995c0ec59253d6bbdd9ea5b234e360..da0020cc77b34dbdb5f6e3180cf7afe51c861a1d 100644 (file)
@@ -141,10 +141,5 @@ inline int (isnan)(double r) { return !(r <= 0 || r >= 0); }
 // No user modifiable definitions beyond here.
 //
 
-/** \def SG_USING_STD(x)
- *  Expands to using std::X
- */
-#  define SG_USING_STD(X) using std::X
-
 #endif // _SG_COMPILER_H
 
index 692ee56abf26fabe94df0199f109337f7a93c333..3c3213082ae7e033945b3325426439597af9c6c9 100644 (file)
@@ -43,9 +43,8 @@
 #include "sg_binobj.hxx"
 
 
-SG_USING_STD( string );
-SG_USING_STD( vector );
-
+using std::string;
+using std::vector;
 using std::cout;
 using std::endl;
 
index a4f78ab07a3ea4be6d21c0ed5af8640f7c3565f9..48b1d2c9c716a9d9e4dbab1073c7cd089748e00c 100644 (file)
@@ -23,9 +23,9 @@
 
 #if ( _MSC_VER == 1200 )
 // MSVC 6 is buggy, and needs something strange here
-SG_USING_STD(vector<SGPropertyNode_ptr>);
-SG_USING_STD(vector<SGPropertyChangeListener *>);
-SG_USING_STD(vector<SGPropertyNode *>);
+using std::vector<SGPropertyNode_ptr>;
+using std::vector<SGPropertyChangeListener *>;
+using std::vector<SGPropertyNode *>;
 #endif
 #endif
 
index 2653931d295788b976ed154e3dcb1cfe7c16072e..a00de04e735a69ff9181d6271a54abc796f6c2eb 100644 (file)
@@ -63,7 +63,7 @@
  #define USE_SOFTWARE_DOPPLER seem to be necessary
 #endif
 
-SG_USING_STD(string);
+using std::string;
 
 /**
  * manages everything we need to know for an individual sound sample
index e763351459f7107935f12777937840ad704b1d88..c759e7901ada9fbe2f4c5f8b5d6c69621d9ea51b 100644 (file)
 #include <string>
 #include <map>
 #include <vector>
-SG_USING_STD(map);
-SG_USING_STD(vector);
-SG_USING_STD(string);
+
+using std::map;
+using std::vector;
+using std::string;
 
 #include <simgear/props/props.hxx>
 #include <simgear/timing/timestamp.hxx>