[thin_delta] Don't use endl which also flushes
This commit is contained in:
parent
c5c699e563
commit
f80c2dc77f
@ -117,10 +117,10 @@ namespace {
|
|||||||
if (oend_ - obegin_ > 1) {
|
if (oend_ - obegin_ > 1) {
|
||||||
cout << "<range_mapping origin_begin=\"" << obegin_ << "\""
|
cout << "<range_mapping origin_begin=\"" << obegin_ << "\""
|
||||||
<< " data_begin=\"" << dbegin_ << "\""
|
<< " data_begin=\"" << dbegin_ << "\""
|
||||||
<< " length=\"" << oend_ - obegin_ << "\"/>" << endl;
|
<< " length=\"" << oend_ - obegin_ << "\"/>" << '\n';
|
||||||
} else {
|
} else {
|
||||||
cout << "<single_mapping origin_block=\"" << obegin_ << "\""
|
cout << "<single_mapping origin_block=\"" << obegin_ << "\""
|
||||||
<< " data_block=\"" << dbegin_ << "\"/>" << endl;
|
<< " data_block=\"" << dbegin_ << "\"/>" << '\n';
|
||||||
}
|
}
|
||||||
|
|
||||||
obegin_ = oblock;
|
obegin_ = oblock;
|
||||||
|
Loading…
Reference in New Issue
Block a user