reader: fix indentation

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

Signed-off-by: Dodji Seketeli <dodji@redhat.com>
This commit is contained in:
Dodji Seketeli 2023-08-15 14:11:58 +02:00
parent 9ac01c4141
commit 953e986769
1 changed files with 7 additions and 7 deletions

View File

@ -4214,16 +4214,16 @@ build_function_type(reader& rdr,
{ {
method_class_type = method_class_type =
is_class_or_union_type(rdr.build_or_get_type_decl(method_class_id, is_class_or_union_type(rdr.build_or_get_type_decl(method_class_id,
/*add_decl_to_scope=*/true)); /*add_decl_to_scope=*/true));
ABG_ASSERT(method_class_type); ABG_ASSERT(method_class_type);
} }
function_type_sptr fn_type(is_method_t function_type_sptr fn_type(is_method_t
? new method_type(method_class_type, ? new method_type(method_class_type,
/*is_const=*/false, /*is_const=*/false,
size, align) size, align)
: new function_type(return_type, : new function_type(return_type,
parms, size, align)); parms, size, align));
rdr.get_translation_unit()->bind_function_type_life_time(fn_type); rdr.get_translation_unit()->bind_function_type_life_time(fn_type);
rdr.key_type_decl(fn_type, id); rdr.key_type_decl(fn_type, id);