From: malaterre Date: Wed, 15 Sep 2004 02:54:36 +0000 (+0000) Subject: ENH: Warnings about shadow vars, + unused var X-Git-Tag: Version0.6.bp~202 X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=commitdiff_plain;h=41ff2e7dce0238097d516c0b10c78008202672d8;p=gdcm.git ENH: Warnings about shadow vars, + unused var --- diff --git a/Testing/TestCopyDicom.cxx b/Testing/TestCopyDicom.cxx index f5ded1b2..e0478850 100644 --- a/Testing/TestCopyDicom.cxx +++ b/Testing/TestCopyDicom.cxx @@ -77,9 +77,10 @@ int TestCopyDicom(int , char* []) // Waiting for a 'clean' solution, I keep the method ...JPRx TagNameHT & nameHt = original->GetHeader()->GetPubDict()->GetEntriesByName(); + (void)nameHt; //not used ? - gdcmValEntry* v; - gdcmBinEntry* b; + //gdcmValEntry* v; + //gdcmBinEntry* b; gdcmDocEntry* d; for (TagDocEntryHT::iterator tag = Ht.begin(); tag != Ht.end(); ++tag)