diff options
-rw-r--r-- | dxr3device.h | 4 | ||||
-rw-r--r-- | dxr3memcpy.h | 2 | ||||
-rw-r--r-- | dxr3vdrincludes.h | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/dxr3device.h b/dxr3device.h index 292642a..40b8696 100644 --- a/dxr3device.h +++ b/dxr3device.h @@ -28,7 +28,7 @@ #include "dxr3demuxdevice.h" #include "dxr3spudecoder.h" #include <string> -using namespace std; +//using namespace std; // ================================== // our device :) @@ -79,7 +79,7 @@ protected: cDxr3DemuxDevice m_DemuxDevice; bool m_AC3Present; bool m_CalledBySet; - string m_strBuf; + std::string m_strBuf; int m_Offset; //virtual bool SetPlayMode(ePlayMode PlayMode); diff --git a/dxr3memcpy.h b/dxr3memcpy.h index 1c0f777..5200434 100644 --- a/dxr3memcpy.h +++ b/dxr3memcpy.h @@ -82,7 +82,7 @@ public: private: unsigned long long int Rdtsc(); - vector<memcpy_routine> m_methods; ///< a std::vector with all methodes + std::vector<memcpy_routine> m_methods; ///< a std::vector with all methodes }; // ================================== diff --git a/dxr3vdrincludes.h b/dxr3vdrincludes.h index c995461..b78845a 100644 --- a/dxr3vdrincludes.h +++ b/dxr3vdrincludes.h @@ -26,7 +26,7 @@ #include <string> #include <algorithm> #include <vector> -using namespace std; +//using namespace std; #ifndef __STL_CONFIG_H #define __STL_CONFIG_H |