From: Dodji Seketeli Date: Fri, 22 Mar 2019 13:43:15 +0000 (+0100) Subject: Misc cleanups X-Git-Tag: libabigail-1.6~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8d60c4a2a1318c476f605953bb431cd8ca74e40e;p=platform%2Fupstream%2Flibabigail.git Misc cleanups * src/abg-dwarf-reader.cc (build_function_type): Cleanup indentation and comments. Signed-off-by: Dodji Seketeli --- diff --git a/src/abg-dwarf-reader.cc b/src/abg-dwarf-reader.cc index 4a8efb72..a4a2e30e 100644 --- a/src/abg-dwarf-reader.cc +++ b/src/abg-dwarf-reader.cc @@ -14252,7 +14252,7 @@ build_function_type(read_context& ctxt, return result; ABG_ASSERT(dwarf_tag(die) == DW_TAG_subroutine_type - || dwarf_tag(die) == DW_TAG_subprogram); + || dwarf_tag(die) == DW_TAG_subprogram); die_source source; ABG_ASSERT(ctxt.get_die_source(die, source)); @@ -14747,7 +14747,8 @@ build_typedef_type(read_context& ctxt, return result; // The call to build_ir_node_from_die() could have triggered the - // creation of the type for this DIE. In that case, just return it. + // creation of the type for this DIE. In that case, just return + // it. if (type_base_sptr t = ctxt.lookup_type_from_die(die)) { result = is_typedef(t);