This commit is contained in:
ikpil 2024-01-21 19:10:54 +09:00
parent 675ca8ea4b
commit 4cb4f16096
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ public class RcRentedArrayTest
{ {
int length = (int)(rand.Next() * 2048); int length = (int)(rand.Next() * 2048);
var values = RandomValues(length); var values = RandomValues(length);
using var array = RcRentedArray.RentDisposableArray<float>(length); using var array = RcRentedArray.RentDisposableArray<int>(length);
for (int i = 0; i < array.Length; ++i) for (int i = 0; i < array.Length; ++i)
{ {