From 6a6058de5f928295b11c966fcebaa8fc0c9edf04 Mon Sep 17 00:00:00 2001 From: jpr Date: Thu, 13 Mar 2003 15:45:13 +0000 Subject: [PATCH] #include #ifdef _MSC_VER using namespace std; // string type lives in the std namespace on VC++ #endif --- src/gdcmException.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/gdcmException.h b/src/gdcmException.h index 2378e3b8..1d0192c3 100644 --- a/src/gdcmException.h +++ b/src/gdcmException.h @@ -16,6 +16,10 @@ #define GDCM_EXCEPTION_H #include +#ifdef _MSC_VER +using namespace std; // string type lives in the std namespace on VC++ +#endif + #include #include using namespace std; -- 2.48.1