Slight indentation fix in the diff report

* src/abg-comparison.cc (class_diff::report): Indentation fix for
	member function changes report.

Signed-off-by: Dodji Seketeli <dodji@redhat.com>
This commit is contained in:
Dodji Seketeli 2014-03-20 12:27:05 +01:00
parent 40a0d8c854
commit f0765e638a

View File

@ -2739,7 +2739,8 @@ class_diff::report(ostream& out, const string& indent) const
class_decl::method_decl_sptr f = i->second.first;
class_decl::method_decl_sptr s = i->second.second;
string repr = f->get_pretty_representation();
out << indent << repr << " has some indirect sub-type changes:\n";
out << indent << " '"
<< repr << "' has some indirect sub-type changes:\n";
diff_sptr diff = compute_diff_for_decls(f, s, context());
if (diff)
{