diff options
author | scop <scop> | 2005-03-22 22:03:42 +0000 |
---|---|---|
committer | scop <scop> | 2005-03-22 22:03:42 +0000 |
commit | 877d2673410b2ac98c2ad6b7fd50eafd05719b86 (patch) | |
tree | b90df81e0972748e6b12387e9b612fe5fb389ea7 | |
parent | 02aa682bdba6e7ebe0f276c78d09efa1827bc175 (diff) | |
download | vdr-plugin-dxr3-877d2673410b2ac98c2ad6b7fd50eafd05719b86.tar.gz vdr-plugin-dxr3-877d2673410b2ac98c2ad6b7fd50eafd05719b86.tar.bz2 |
namespace std still needed for some stuff...
-rw-r--r-- | HISTORY | 3 | ||||
-rw-r--r-- | dxr3vdrincludes.h | 1 |
2 files changed, 3 insertions, 1 deletions
@@ -261,7 +261,8 @@ NOTE: I havent found time to include all of the languages, will be done in pre2 so we make use of DVD-functions of the dxr3 (Christian Gmeiner) - checked Lock() and Unlock() in dxr3interface.c - hope everything is ok else contact me (Christian Gmeiner) -- using now std:: instead of namespace std (bug #1044069, Christian Gmeiner) +- using now std::string instead of namespace std + (bug #1044069, Christian Gmeiner) - renamed dxr3interface_spu_encoder.h/c to dxr3spuencoder.h/c (Christian Gmeiner) - removed extra log commands in dxr3outputthread.c (Christian Gmeiner) diff --git a/dxr3vdrincludes.h b/dxr3vdrincludes.h index 42344d1..c995461 100644 --- a/dxr3vdrincludes.h +++ b/dxr3vdrincludes.h @@ -26,6 +26,7 @@ #include <string> #include <algorithm> #include <vector> +using namespace std; #ifndef __STL_CONFIG_H #define __STL_CONFIG_H |