From: malaterre Date: Wed, 19 Oct 2005 15:43:58 +0000 (+0000) Subject: COMP: Please VS6 X-Git-Tag: OpenJPEG.Version1.2~313 X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=commitdiff_plain;h=215def20c8a86fa7ce257fab3e140c4cf5bc7a5b;p=gdcm.git COMP: Please VS6 --- diff --git a/Testing/TestDataEntry.cxx b/Testing/TestDataEntry.cxx index c6fc0d31..b4013207 100644 --- a/Testing/TestDataEntry.cxx +++ b/Testing/TestDataEntry.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: TestDataEntry.cxx,v $ Language: C++ - Date: $Date: 2005/10/18 19:06:29 $ - Version: $Revision: 1.2 $ + Date: $Date: 2005/10/19 15:43:58 $ + Version: $Revision: 1.3 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -35,6 +35,7 @@ unsigned long nbvalue = 5; */ int TestDataEntry(int , char *[]) { + unsigned int i; gdcm::DictEntry *dict; gdcm::DataEntry *entry; @@ -130,7 +131,7 @@ int TestDataEntry(int , char *[]) delete entry; return(1); } - for(unsigned int i=0;iGetValueCount();i++) + for(i=0;iGetValueCount();i++) { if( entry->GetValue(i) != svalue[i] ) { @@ -182,7 +183,7 @@ int TestDataEntry(int , char *[]) delete entry; return(1); } - for(unsigned int i=0;iGetValueCount();i++) + for(i=0;iGetValueCount();i++) { if( entry->GetValue(i) != svalue[i] ) { @@ -216,7 +217,7 @@ int TestDataEntry(int , char *[]) delete entry; return(1); } - for(unsigned int i=0;iGetValueCount();i++) + for(i=0;iGetValueCount();i++) { if( entry->GetValue(i) != svalue[i] ) { @@ -268,7 +269,7 @@ int TestDataEntry(int , char *[]) delete entry; return(1); } - for(unsigned int i=0;iGetValueCount();i++) + for(i=0;iGetValueCount();i++) { if( entry->GetValue(i) != lvalue[i] ) { @@ -302,7 +303,7 @@ int TestDataEntry(int , char *[]) delete entry; return(1); } - for(unsigned int i=0;iGetValueCount();i++) + for(i=0;iGetValueCount();i++) { if( entry->GetValue(i) != lvalue[i] ) { @@ -353,7 +354,7 @@ int TestDataEntry(int , char *[]) delete entry; return(1); } - for(unsigned int i=0;iGetValueCount();i++) + for(i=0;iGetValueCount();i++) { if( entry->GetValue(i) != fvalue[i] ) { @@ -387,7 +388,7 @@ int TestDataEntry(int , char *[]) delete entry; return(1); } - for(unsigned int i=0;iGetValueCount();i++) + for(i=0;iGetValueCount();i++) { if( entry->GetValue(i) != fvalue[i] ) { @@ -438,7 +439,7 @@ int TestDataEntry(int , char *[]) delete entry; return(1); } - for(unsigned int i=0;iGetValueCount();i++) + for(i=0;iGetValueCount();i++) { if( entry->GetValue(i) != dvalue[i] ) { @@ -472,7 +473,7 @@ int TestDataEntry(int , char *[]) delete entry; return(1); } - for(unsigned int i=0;iGetValueCount();i++) + for(i=0;iGetValueCount();i++) { if( entry->GetValue(i) != dvalue[i] ) {