Keep -vet happy

This commit is contained in:
Feoramund
2024-06-15 15:49:05 -04:00
parent aab5338134
commit 8b31cddaba
+1 -1
View File
@@ -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
} }