cppdatabase: removed the useless status message
authorMarkus Bröker <mbroeker@largo.dyndns.tv>
Sat, 23 May 2009 03:27:24 +0200
changeset 94 c100ba6939e3
parent 93 66b3596f71b6
child 95 d2a071bd1a60
cppdatabase: removed the useless status message seekg returns an ifstream&, not an integer value committer: Markus Bröker <mbroeker@largo.homelinux.org>
cppdatabase.cc
--- a/cppdatabase.cc
+++ b/cppdatabase.cc
@@ -26,8 +26,7 @@
 {
     std::cout << "clear eof" << std::endl;
     in.clear ();
-    std::cout << "seek status: " << in.seekg (0, std::ios::beg) <<
-        std::endl << std::endl;
+    in.seekg (0, std::ios::beg);
 
     struct Person p;