Skip to content

Commit

Permalink
fix ancestors being incorrectly fetched
Browse files Browse the repository at this point in the history
  • Loading branch information
quinchs committed Jul 27, 2023
1 parent 7abf62e commit b946791
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ static CodecAncestor[] ConstructAncestors(ushort[] ancestors, RelativeCodecDeleg
for (var i = 0; i != ancestors.Length; i++)
{
codecAncestors[i] = new CodecAncestor(
ref relativeCodec(in i),
ref relativeDescriptor(in i)
ref relativeCodec(ancestors[i]),
ref relativeDescriptor(ancestors[i])
);
}

Expand Down

0 comments on commit b946791

Please sign in to comment.