Fix leaf-mode formatting of decl <-> defn diffs.

This commit adds a missing newline.

	* src/abg-leaf-reporter.cc (leaf_reporter::report): In the
	class_or_union_diff overload, add a terminating new line after
	reporting a declaration-only <-> definition difference.

Signed-off-by: Giuliano Procida <gprocida@google.com>
This commit is contained in:
Giuliano Procida 2020-06-16 13:12:10 +01:00 committed by Dodji Seketeli
parent 29de666641
commit 4e256018d3

View File

@ -475,7 +475,7 @@ leaf_reporter::report(const class_or_union_diff& d,
: " and is now a defined type";
out << indent << "type " << first->get_pretty_representation()
<< was << is_now;
<< was << is_now << "\n";
return;
}