[01/16] reader: fix indentation

Message ID 87edjagl8t.fsf@redhat.com
State New
Headers
Series Fixing various issues found while working on PR30309 |

Commit Message

Dodji Seketeli Sept. 7, 2023, 1:34 p.m. UTC
  Hello,

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

Signed-off-by: Dodji Seketeli <dodji@redhat.com>
Applied to master.
---
 src/abg-reader.cc | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)
  

Patch

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);