]> Creatis software - gdcm.git/commitdiff
Comments
authorjpr <jpr>
Fri, 28 Oct 2005 15:52:46 +0000 (15:52 +0000)
committerjpr <jpr>
Fri, 28 Oct 2005 15:52:46 +0000 (15:52 +0000)
src/gdcmDocument.cxx
src/gdcmUtil.cxx

index d9767fd616de8ec00c5588d209ede837870273fb..2bf79ead5b000e767932fba248527d599996b0ea 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmDocument.cxx,v $
   Language:  C++
-  Date:      $Date: 2005/10/28 12:44:26 $
-  Version:   $Revision: 1.319 $
+  Date:      $Date: 2005/10/28 15:52:46 $
+  Version:   $Revision: 1.320 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -769,7 +769,6 @@ void Document::LoadEntryBinArea(DataEntry *entry)
    {
       case 1:
       {
-         gdcmDebugMacro( "Atomic lgt = 1 ; NO swap at reading");
          break;
       }     
       case 2:
index 4aa3619ff8b81e6b09e1f5ba95fcdab3efaed368..5267b38d7626e361b0e70be21fb4b8f52ffd8577 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmUtil.cxx,v $
   Language:  C++
-  Date:      $Date: 2005/10/27 18:14:01 $
-  Version:   $Revision: 1.171 $
+  Date:      $Date: 2005/10/28 15:52:46 $
+  Version:   $Revision: 1.172 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -195,7 +195,6 @@ bool Util::IsCleanString(std::string const &s)
    //std::cout<< std::endl << s << std::endl;
    for(unsigned int i=0; i<s.size(); i++)
    {
-      //std::cout<< std::endl << i << " : " << (unsigned char)s[i] << std::endl;
       if (!isprint((unsigned char)s[i]) )
       {
          return false;
@@ -1027,7 +1026,6 @@ std::ostream &binary_write(std::ostream &os, std::string const &val)
  */ 
 std::ostream &binary_write(std::ostream &os, const uint8_t *val, size_t len)
 {
-    gdcmDebugMacro( "binary_write " << len );
    // We are writting sizeof(char) thus no need to swap bytes
    return os.write(reinterpret_cast<const char*>(val), len);
 }