@@ -413,8 +413,8 @@ int GSSerializeObject(GS_Encoder_Context_Internal &context,
413413 if (object.parent_present ) object1.parent = gs::ObjectID{object.parent };
414414
415415 // Serialize the object
416- auto [object_count,
417- octet_count] = context.encoder .Encode (context.data_buffer , object1);
416+ auto [object_count, octet_count] =
417+ context.encoder .Encode (context.data_buffer , object1);
418418
419419 return static_cast <int >(object_count);
420420}
@@ -453,8 +453,8 @@ int GSSerializeObject(GS_Encoder_Context_Internal &context,
453453 if (object.ipd_present ) head1.ipd = gs::HeadIPD1{object.ipd .ipd };
454454
455455 // Serialize the object
456- auto [object_count,
457- octet_count] = context.encoder .Encode (context.data_buffer , head1);
456+ auto [object_count, octet_count] =
457+ context.encoder .Encode (context.data_buffer , head1);
458458
459459 return static_cast <int >(object_count);
460460}
@@ -493,8 +493,8 @@ int GSSerializeObject(GS_Encoder_Context_Internal &context,
493493 SerializeCopy (object.rotation , hand1.rotation );
494494
495495 // Serialize the object
496- auto [object_count,
497- octet_count] = context.encoder .Encode (context.data_buffer , hand1);
496+ auto [object_count, octet_count] =
497+ context.encoder .Encode (context.data_buffer , hand1);
498498
499499 return static_cast <int >(object_count);
500500}
@@ -555,8 +555,8 @@ int GSSerializeObject(GS_Encoder_Context_Internal &context,
555555 }
556556
557557 // Serialize the object
558- auto [object_count,
559- octet_count] = context.encoder .Encode (context.data_buffer , mesh1);
558+ auto [object_count, octet_count] =
559+ context.encoder .Encode (context.data_buffer , mesh1);
560560
561561 return static_cast <int >(object_count);
562562}
@@ -601,8 +601,8 @@ int GSSerializeObject(GS_Encoder_Context_Internal &context,
601601 SerializeCopy (object.pinky , hand2.pinky );
602602
603603 // Serialize the object
604- auto [object_count,
605- octet_count] = context.encoder .Encode (context.data_buffer , hand2);
604+ auto [object_count, octet_count] =
605+ context.encoder .Encode (context.data_buffer , hand2);
606606
607607 return static_cast <int >(object_count);
608608}
@@ -640,8 +640,8 @@ int GSSerializeObject(GS_Encoder_Context_Internal &context,
640640 object.data + object.data_length );
641641
642642 // Serialize the object
643- auto [object_count,
644- octet_count] = context.encoder .Encode (context.data_buffer , unknown);
643+ auto [object_count, octet_count] =
644+ context.encoder .Encode (context.data_buffer , unknown);
645645
646646 return static_cast <int >(object_count);
647647}
@@ -676,8 +676,8 @@ int GSSerializeObject(GS_Encoder_Context_Internal &context,
676676 head_ipd1.ipd .value = object.ipd ;
677677
678678 // Serialize the object
679- auto [object_count,
680- octet_count] = context.encoder .Encode (context.data_buffer , head_ipd1);
679+ auto [object_count, octet_count] =
680+ context.encoder .Encode (context.data_buffer , head_ipd1);
681681
682682 return static_cast <int >(object_count);
683683}
0 commit comments