Skip to content

Commit

Permalink
Use constructor instead implicit operator
Browse files Browse the repository at this point in the history
  • Loading branch information
pmosk committed Sep 19, 2024
1 parent 29bb373 commit c571b70
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@ public FlatArray<FlatArray<T>> Chunk(int size)
chunks[i] = new(chunkLength, chunkItems);
}

return chunks;
return new(chunksLength, chunks);
}
}

0 comments on commit c571b70

Please sign in to comment.