dwarf-reader: Indent

I stumbled upon some mis-indented function declaration while looking
at something else.  Fixed thus.

	* src/abg-dwarf-reader.cc (finish_member_function_reading): Fix
	indentation.

Signed-off-by: Dodji Seketeli <dodji@redhat.com>
This commit is contained in:
Dodji Seketeli 2021-09-23 10:05:46 +02:00
parent 86a1738d96
commit 9ddfe1d860

View File

@ -6157,10 +6157,10 @@ variable_is_suppressed(const read_context& ctxt,
bool is_required_decl_spec = false);
static void
finish_member_function_reading(Dwarf_Die* die,
const function_decl_sptr& f,
const class_or_union_sptr& klass,
read_context& ctxt);
finish_member_function_reading(Dwarf_Die* die,
const function_decl_sptr& f,
const class_or_union_sptr klass,
read_context& ctxt);
/// Setter of the debug info root path for a dwarf reader context.
///
@ -11652,10 +11652,10 @@ build_enum_type(read_context& ctxt,
///
/// @param ctxt the context used to read the ELF/DWARF information.
static void
finish_member_function_reading(Dwarf_Die* die,
const function_decl_sptr& f,
const class_or_union_sptr& klass,
read_context& ctxt)
finish_member_function_reading(Dwarf_Die* die,
const function_decl_sptr& f,
const class_or_union_sptr klass,
read_context& ctxt)
{
ABG_ASSERT(klass);