Skip to content

Commit

Permalink
Fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
wasabii committed Aug 18, 2024
1 parent eaa2d8d commit 773acd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/IKVM.ByteCode/Fixed4Table.cs
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ public void Add(in T item)
/// <param name="index"></param>
/// <returns></returns>
/// <exception cref="ArgumentOutOfRangeException"></exception>
public static ref readonly T GetItem(in Fixed4Table<T> table, int index)
public static ref T GetItem(ref Fixed4Table<T> table, int index)
{
if (index >= table.Count)
throw new ArgumentOutOfRangeException(nameof(index));
Expand Down

0 comments on commit 773acd3

Please sign in to comment.