From 26b6ebf6609df422a80daa053013b76ffddd7a1f Mon Sep 17 00:00:00 2001 From: jpr Date: Thu, 13 Mar 2003 15:42:08 +0000 Subject: [PATCH] #include #ifdef _MSC_VER using namespace std; // string type lives in the std namespace on VC++ #endif en esperant que ca marche comme avant --- src/gdcmCommon.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/gdcmCommon.h b/src/gdcmCommon.h index 45458070..a86930e2 100644 --- a/src/gdcmCommon.h +++ b/src/gdcmCommon.h @@ -20,12 +20,15 @@ typedef int gint32; #ifdef _MSC_VER #define GDCM_EXPORT __declspec( dllexport ) -using namespace std; #else #define GDCM_EXPORT #endif #include +#ifdef _MSC_VER +using namespace std; // string type lives in the std namespace on VC++ +#endif + typedef string TagKey; typedef string TagName; -- 2.48.1