Browse Source

Keep `-vet` happy

Feoramund 1 year ago
parent
commit
8b31cddaba
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/core/slice/test_core_slice.odin

+ 1 - 1
tests/core/slice/test_core_slice.odin

@@ -201,7 +201,7 @@ test_permutation_iterator :: proc(t: ^testing.T) {
 	permutations_counted: int
 	permutations_counted: int
 	for slice.permute(&iter) {
 	for slice.permute(&iter) {
 		n := 0
 		n := 0
-		for item, index in s {
+		for item in s {
 			n *= 10
 			n *= 10
 			n += item
 			n += item
 		}
 		}