]> SALOME platform Git repositories - modules/geom.git/commitdiff
Salome HOME
remove debug printout
authorinv <inv@opencascade.com>
Fri, 6 Dec 2013 06:01:08 +0000 (06:01 +0000)
committerinv <inv@opencascade.com>
Fri, 6 Dec 2013 06:01:08 +0000 (06:01 +0000)
src/XAO/tests/TestUtils.hxx

index 137b795885010243bc7c4d45c9aa4edc67d04ce3..1221c9582d8dcdec55b825c0c616f582796169be 100644 (file)
@@ -24,7 +24,6 @@ namespace XAO
             rstr.open(filePath.c_str());
             rstr.seekg(0, rstr.end);        // go to the end
             length = rstr.tellg();          // report location (this is the length)
-            printf("---------------------------VSR: length=%ld\n", length);
             rstr.seekg(0, rstr.beg);        // go back to the beginning
             char* txt = new char[length+1]; // allocate memory for a buffer of appropriate dimension
             rstr.read(txt, length);         // read the whole file into the buffer