mirror of
git://sourceware.org/git/libabigail.git
synced 2024-12-16 23:14:36 +00:00
Fix indentation of pieces of class diff report
* src/abg-comparison.cc (represent, class_diff::report): Fix indentation. Signed-off-by: Dodji Seketeli <dodji@redhat.com>
This commit is contained in:
parent
0f397606a1
commit
0aec4376d8
@ -788,9 +788,9 @@ represent(class_decl::data_member_sptr o,
|
||||
n->get_type(),
|
||||
ctxt);
|
||||
if (d->currently_reporting())
|
||||
out << indent << "details are being reported\n";
|
||||
out << indent << " details are being reported\n";
|
||||
else if (d->reported_once())
|
||||
out << indent << "details were reported earlier\n";
|
||||
out << indent << " details were reported earlier\n";
|
||||
else
|
||||
d->report(out, indent + " ");
|
||||
emitted = false;
|
||||
@ -2407,7 +2407,7 @@ class_diff::report(ostream& out, const string& indent) const
|
||||
<< o->get_pretty_representation()
|
||||
<< "' changed:\n";
|
||||
diff_sptr dif = compute_diff(o, n, context());
|
||||
dif->report(out, indent + " ");
|
||||
dif->report(out, indent + " ");
|
||||
}
|
||||
out << "\n";
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user