Skip to content

Commit

Permalink
Fixed BasicValueType getter of PaddingType. (m4rs-mt#1079)
Browse files Browse the repository at this point in the history
  • Loading branch information
m4rs-mt authored and MoFtZ committed Apr 24, 2024
1 parent 15c51ac commit b6a61e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Src/ILGPU/IR/Types/PaddingType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ internal PaddingType(IRTypeContext typeContext, PrimitiveType primitiveType)
/// <summary>
/// Returns the associated basic value type.
/// </summary>
public new BasicValueType BasicValueType => PrimitiveType.BasicValueType;
public override BasicValueType BasicValueType => PrimitiveType.BasicValueType;

/// <summary>
/// Returns the associated basic value type.
Expand Down

0 comments on commit b6a61e8

Please sign in to comment.