From e8cd982edb78da16b0ca42d09a5a7943e48587ef Mon Sep 17 00:00:00 2001 From: malaterre Date: Tue, 9 Nov 2004 22:30:43 +0000 Subject: [PATCH] BUG: Remaining problem with borland --- src/gdcmDebug.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/gdcmDebug.cxx b/src/gdcmDebug.cxx index fe3a5414..6bff5c2b 100644 --- a/src/gdcmDebug.cxx +++ b/src/gdcmDebug.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDebug.cxx,v $ Language: C++ - Date: $Date: 2004/11/09 22:15:36 $ - Version: $Revision: 1.11 $ + Date: $Date: 2004/11/09 22:30:43 $ + Version: $Revision: 1.12 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -116,7 +116,7 @@ void Debug::Exit(int a) #ifdef __GNUC__ std::exit(a); #endif -#ifdef _MSC_VER || __BORLANDC__ +#if defined(_MSC_VER) || defined(__BORLANDC__) exit(a); // Found in #include #endif } -- 2.48.1