Fix package dependency problem
All checks were successful
Publish NuGet Packages / publish (push) Successful in 1m47s

This commit is contained in:
2025-11-04 20:48:25 +09:00
parent 308c70d0e1
commit b914716225
29 changed files with 179 additions and 197 deletions

View File

@@ -1,4 +1,4 @@
using Misaki.HighPerformance.LowLevel.Buffer;
using Misaki.HighPerformance.LowLevel.Buffer;
using Misaki.HighPerformance.LowLevel.Collections;
namespace Misaki.HighPerformance.Test.UnitTest.Collections;
@@ -127,7 +127,7 @@ public class TestUnsafeSparseSet
_sparseSet.Remove(ids[1], gens[1]); // Remove the second element (20)
var ptr = (int*)_sparseSet.GetUnsafePtr();
Assert.AreEqual(2, _sparseSet.Count);
var index = 0;