Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ds5678 committed Sep 22, 2024
1 parent eb103d0 commit 58d1b62
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Il2CppInterop.Generator/Extensions/AsmResolverExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@ namespace Il2CppInterop.Generator.Extensions;

internal static class AsmResolverExtensions
{
/// <summary>
/// Boolean, Char, or numeric type
/// <summary>
/// Boolean, Char, or numeric type
/// </summary>
public static bool IsPrimitive(this TypeSignature type)
{
return (type as CorLibTypeSignature)?.ElementType.IsPrimitive() ?? false;
}

/// <summary>
/// Boolean, Char, or numeric type
/// <summary>
/// Boolean, Char, or numeric type
/// </summary>
public static bool IsPrimitive(this ElementType elementType)
{
Expand Down

0 comments on commit 58d1b62

Please sign in to comment.