X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDebug.cxx;h=6bff5c2b828c18efcd3f26921f22fa9b9b119367;hb=d97e9432393b8515630a11586e0e95df6be9eb43;hp=787c529cc98d5880043d853804f6f673891f0021;hpb=c132b43ebda61490fe85f62a88969b6cfb9e400d;p=gdcm.git diff --git a/src/gdcmDebug.cxx b/src/gdcmDebug.cxx index 787c529c..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/10/15 10:43:27 $ - Version: $Revision: 1.10 $ + 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 +#if defined(_MSC_VER) || defined(__BORLANDC__) exit(a); // Found in #include #endif }