Skip to content

Commit

Permalink
Fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
raulsntos committed Aug 31, 2024
1 parent b62bb9c commit ddbd6bd
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -101,12 +101,12 @@ public TypeInfo GetOrAddInlineArray(int length)
GenericTypeArgumentCount = 1,
Attributes = { $"[global::System.Runtime.CompilerServices.InlineArray({length})]" },
DeclaredFields =
{
new FieldInfo("_element0", new TypeParameterInfo("T"))
{
VisibilityAttributes = VisibilityAttributes.Private,
new FieldInfo("_element0", new TypeParameterInfo("T"))
{
VisibilityAttributes = VisibilityAttributes.Private,
},
},
},
};
_data._inlineArrays[length] = inlineArrayType;

Expand Down

0 comments on commit ddbd6bd

Please sign in to comment.