]> git.mxchange.org Git - simgear.git/commitdiff
std:: namespace fixes.
authorJames Turner <zakalawe@mac.com>
Mon, 17 Oct 2011 08:50:35 +0000 (09:50 +0100)
committerJames Turner <zakalawe@mac.com>
Mon, 17 Oct 2011 08:50:35 +0000 (09:50 +0100)
simgear/scene/tsync/terrasync.cxx
simgear/scene/tsync/terrasync.hxx
simgear/sound/soundmgr_openal.cxx

index 357390cc4b79483dc4ce67d75ba69e1ff2936856..0f99d4e508c739aaeafa5f64362539a21c7d274e 100644 (file)
@@ -86,6 +86,7 @@
 #endif
 
 using namespace simgear;
+using namespace std;
 
 const char* rsync_cmd = 
         "rsync --verbose --archive --delete --perms --owner --group";
index 89ce5a7fa1d1f642b3ee947becda56e2bf6c2673..7e6e0cb14f0752c32ccfc389b8387559c930cdef 100644 (file)
@@ -54,7 +54,7 @@ protected:
     void syncAirportsModels();
     void syncArea(int lat, int lon);
     void syncAreas(int lat, int lon, int lat_dir, int lon_dir);
-    void refreshScenery(SGPath path,const string& relativeDir);
+    void refreshScenery(SGPath path,const std::string& relativeDir);
 
     class SvnThread;
 
index 3a0b2979c3a4d841caf11cdddd67518fcd44e8e1..f0c08eb2c7c7c76631eb8bc49c2691e758afc0b3 100644 (file)
@@ -47,6 +47,7 @@
 #include <simgear/math/SGMath.hxx>
 
 using std::string;
+using std::vector;
 
 extern bool isNaN(float *v);