mirror of
git://sourceware.org/git/libabigail.git
synced 2024-12-17 15:34:34 +00:00
Fix a missing new line in the reports
* src/abg-comparison.cc (represent(class_decl::method_decl_sptr, ostream&)): Add a missing new line. * tests/data/test-bidiff/test-struct1-report.txt: Adjust. Signed-off-by: Dodji Seketeli <dodji@redhat.com>
This commit is contained in:
parent
8b93472231
commit
b6c3e9ec0a
@ -1091,7 +1091,8 @@ represent(class_decl::method_decl_sptr mem_fn, ostream& out)
|
||||
out << ", virtual at voffset "
|
||||
<< get_member_function_vtable_offset(mem_fn)
|
||||
<< "/"
|
||||
<< meth->get_type()->get_class_type()->get_virtual_mem_fns().size();
|
||||
<< meth->get_type()->get_class_type()->get_virtual_mem_fns().size()
|
||||
<< "\n";
|
||||
}
|
||||
|
||||
/// Stream a string representation for a data member.
|
||||
|
@ -17,6 +17,7 @@
|
||||
|
||||
1 member function insertion:
|
||||
'method int s0::foo(int, char) const', virtual at voffset 2/2
|
||||
|
||||
's0*' changed:
|
||||
pointed to type 'class s0' changed, as reported earlier
|
||||
'class s0' changed:
|
||||
|
Loading…
Reference in New Issue
Block a user