From: inv Date: Fri, 6 Dec 2013 06:01:08 +0000 (+0000) Subject: remove debug printout X-Git-Tag: V7_3_0~20 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=744e4dbd01601d41f9f7d346a47267095dfbe132;p=modules%2Fgeom.git remove debug printout --- diff --git a/src/XAO/tests/TestUtils.hxx b/src/XAO/tests/TestUtils.hxx index 137b79588..1221c9582 100644 --- a/src/XAO/tests/TestUtils.hxx +++ b/src/XAO/tests/TestUtils.hxx @@ -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