From b8bd6a72579966aea6be79f58ec4b51f721b8645 Mon Sep 17 00:00:00 2001 From: malaterre Date: Sun, 4 Sep 2005 15:43:12 +0000 Subject: [PATCH] COMP: Remove stupid warning on Win32/cl. I don't unerstand the code anyway --- Example/PrintFile.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Example/PrintFile.cxx b/Example/PrintFile.cxx index 6589f220..ef69a0b4 100644 --- a/Example/PrintFile.cxx +++ b/Example/PrintFile.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: PrintFile.cxx,v $ Language: C++ - Date: $Date: 2005/09/04 15:34:40 $ - Version: $Revision: 1.52 $ + Date: $Date: 2005/09/04 15:43:12 $ + Version: $Revision: 1.53 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -187,7 +187,7 @@ int main(int argc, char *argv[]) bool showlut = ( 0 != am->ArgMgrDefined("SHOWLUT") ); - bool ddict = am->ArgMgrDefined("dict"); + bool ddict = am->ArgMgrDefined("dict") ? true : false; char *dict = 0; if (ddict) -- 2.48.1