From 724fc941e10045f4e21ac6bdd7d8e89c3b68bbf9 Mon Sep 17 00:00:00 2001 From: jpr Date: Thu, 13 Mar 2003 15:37:49 +0000 Subject: [PATCH] ajout namespace std pour les string sous Windows --- src/gdcmCommon.h | 1 + src/gdcmException.h | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gdcmCommon.h b/src/gdcmCommon.h index 4041279b..45458070 100644 --- a/src/gdcmCommon.h +++ b/src/gdcmCommon.h @@ -20,6 +20,7 @@ typedef int gint32; #ifdef _MSC_VER #define GDCM_EXPORT __declspec( dllexport ) +using namespace std; #else #define GDCM_EXPORT #endif diff --git a/src/gdcmException.h b/src/gdcmException.h index 3c30f94b..2378e3b8 100644 --- a/src/gdcmException.h +++ b/src/gdcmException.h @@ -49,7 +49,7 @@ class GDCM_EXPORT gdcmException : public exception { /** - * virtual descructor makes this class dynamic + * virtual destructor makes this class dynamic */ virtual ~gdcmException() { } -- 2.48.1