Remove dead variable

This commit is contained in:
gingerBill
2024-06-15 15:53:16 +01:00
parent c97ffbecbc
commit 1c940e3968
2 changed files with 0 additions and 2 deletions
-1
View File
@@ -20,7 +20,6 @@ test_avl :: proc(t: ^testing.T) {
iter := avl.iterator(&tree, avl.Direction.Forward)
testing.expect(t, avl.iterator_get(&iter) == nil, "empty/iterator: first node should be nil")
r: rand.Rand
r := rand.create(t.seed)
context.random_generator = rand.default_random_generator(&r)
@@ -14,7 +14,6 @@ test_rbtree_integer :: proc(t: ^testing.T, $Key: typeid, $Value: typeid) {
defer mem.tracking_allocator_destroy(&track)
context.allocator = mem.tracking_allocator(&track)
r: rand.Rand
r := rand.create(t.seed)
context.random_generator = rand.default_random_generator(&r)