From 953e98676947d2b9b78ab582f4a95b36a2aafb66 Mon Sep 17 00:00:00 2001 From: Dodji Seketeli Date: Tue, 15 Aug 2023 14:11:58 +0200 Subject: [PATCH] reader: fix indentation * src/abg-reader.cc (build_function_type): Fix indentation. Signed-off-by: Dodji Seketeli --- src/abg-reader.cc | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/abg-reader.cc b/src/abg-reader.cc index 8e9c5b3a..520d158a 100644 --- a/src/abg-reader.cc +++ b/src/abg-reader.cc @@ -4214,16 +4214,16 @@ build_function_type(reader& rdr, { method_class_type = 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); } - function_type_sptr fn_type(is_method_t - ? new method_type(method_class_type, - /*is_const=*/false, - size, align) - : new function_type(return_type, - parms, size, align)); + function_type_sptr fn_type(is_method_t + ? new method_type(method_class_type, + /*is_const=*/false, + size, align) + : new function_type(return_type, + parms, size, align)); rdr.get_translation_unit()->bind_function_type_life_time(fn_type); rdr.key_type_decl(fn_type, id);