Fix some white space nits

* src/abg-comparison.cc (class_diff::report): Remove a useless
	horizontal white space.
	* src/abg-ir.cc (operator==): Add a vertical space.

Signed-off-by: Dodji Seketeli <dodji@redhat.com>
This commit is contained in:
Dodji Seketeli 2015-12-08 12:53:24 +01:00
parent 9fa5cc298c
commit 8c8df9d1cc
2 changed files with 2 additions and 1 deletions

View File

@ -9511,7 +9511,7 @@ class_diff::report(ostream& out, const string& indent) const
class_decl::base_spec_sptr base = i->second;
if ( priv_->base_has_changed(base))
if (priv_->base_has_changed(base))
continue;
out << indent << " "
<< base->get_base_class()->get_pretty_representation();

View File

@ -7769,6 +7769,7 @@ operator==(const reference_type_def_sptr& l, const reference_type_def_sptr& r)
return *l == *r;
}
// </reference_type_def definitions>
// <array_type_def definitions>