mirror of
https://github.com/openharmony/third_party_libabigail.git
synced 2026-07-01 06:09:52 -04:00
reporter-priv: Passing a string parm by reference
While looking at something else, I noticed the maybe_report_data_members_replaced_by_anon_dm function was passing a string parameter by value. Pass this by reference. * src/abg-reporter-priv.h (maybe_report_data_members_replaced_by_anon_dm): Pass the string parm by ... * src/abg-reporter-priv.cc (maybe_report_data_members_replaced_by_anon_dm): ... reference. Signed-off-by: Dodji Seketeli <dodji@redhat.com>
This commit is contained in:
@@ -1387,7 +1387,7 @@ reporter_base::diff_to_be_reported(const diff *d) const
|
||||
void
|
||||
maybe_report_data_members_replaced_by_anon_dm(const class_or_union_diff &d,
|
||||
ostream &out,
|
||||
const string indent)
|
||||
const string &indent)
|
||||
{
|
||||
const diff_context_sptr& ctxt = d.context();
|
||||
|
||||
|
||||
@@ -238,8 +238,7 @@ maybe_report_interfaces_impacted_by_diff(const diff_sptr &d,
|
||||
void
|
||||
maybe_report_data_members_replaced_by_anon_dm(const class_or_union_diff &d,
|
||||
ostream &out,
|
||||
const string indent);
|
||||
|
||||
const string &indent);
|
||||
|
||||
void
|
||||
maybe_report_base_class_reordering(const class_diff &d,
|
||||
|
||||
Reference in New Issue
Block a user