Skip to content

Commit

Permalink
Fix AddRange for FlatArray
Browse files Browse the repository at this point in the history
  • Loading branch information
andreise committed Aug 19, 2023
1 parent 432daa2 commit 00a4270
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ internal Builder AddRange(FlatArray<T> items)
return this;
}

InnerAddRange(items);
InnerAddRange(items.items!);
return this;
}

Expand Down

0 comments on commit 00a4270

Please sign in to comment.