[thin_delta] Don't use endl which also flushes

This commit is contained in:
Joe Thornber 2014-06-16 13:58:25 +01:00
parent c5c699e563
commit f80c2dc77f

View File

@ -117,10 +117,10 @@ namespace {
if (oend_ - obegin_ > 1) {
cout << "<range_mapping origin_begin=\"" << obegin_ << "\""
<< " data_begin=\"" << dbegin_ << "\""
<< " length=\"" << oend_ - obegin_ << "\"/>" << endl;
<< " length=\"" << oend_ - obegin_ << "\"/>" << '\n';
} else {
cout << "<single_mapping origin_block=\"" << obegin_ << "\""
<< " data_block=\"" << dbegin_ << "\"/>" << endl;
<< " data_block=\"" << dbegin_ << "\"/>" << '\n';
}
obegin_ = oblock;