Browse Source

Minor code style change

gingerBill 4 years ago
parent
commit
818942b72e
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/check_type.cpp

+ 2 - 2
src/check_type.cpp

@@ -575,8 +575,8 @@ void check_struct_type(CheckerContext *ctx, Type *struct_type, Ast *node, Array<
 		context = str_lit("struct #raw_union");
 	}
 
-	struct_type->Struct.scope               = ctx->scope;
-	struct_type->Struct.is_packed           = st->is_packed;
+	struct_type->Struct.scope     = ctx->scope;
+	struct_type->Struct.is_packed = st->is_packed;
 	struct_type->Struct.polymorphic_params = check_record_polymorphic_params(
 		ctx, st->polymorphic_params,
 		&struct_type->Struct.is_polymorphic,