Mercurial > hg > svcore
diff data/fileio/MatchFileReader.cpp @ 843:e802e550a1f2
Drop std:: from cout, cerr, endl -- pull these in through Debug.h
author | Chris Cannam |
---|---|
date | Tue, 26 Nov 2013 13:35:08 +0000 |
parents | 1424aa29ae95 |
children | 59e7fe1b1003 |
line wrap: on
line diff
--- a/data/fileio/MatchFileReader.cpp Tue Nov 26 11:16:37 2013 +0000 +++ b/data/fileio/MatchFileReader.cpp Tue Nov 26 13:35:08 2013 +0000 @@ -168,16 +168,16 @@ } if (alignment.thisHopTime == 0.0) { - std::cerr << "ERROR in Match file: this hop time == 0, using 0.01 instead" << std::endl; + cerr << "ERROR in Match file: this hop time == 0, using 0.01 instead" << endl; alignment.thisHopTime = 0.01; } if (alignment.refHopTime == 0.0) { - std::cerr << "ERROR in Match file: ref hop time == 0, using 0.01 instead" << std::endl; + cerr << "ERROR in Match file: ref hop time == 0, using 0.01 instead" << endl; alignment.refHopTime = 0.01; } - std::cerr << "MatchFileReader: this hop = " << alignment.thisHopTime << ", ref hop = " << alignment.refHopTime << ", this index count = " << alignment.thisIndex.size() << ", ref index count = " << alignment.refIndex.size() << std::endl; + cerr << "MatchFileReader: this hop = " << alignment.thisHopTime << ", ref hop = " << alignment.refHopTime << ", this index count = " << alignment.thisIndex.size() << ", ref index count = " << alignment.refIndex.size() << endl; return alignment; }