1
0
Fork 0
mirror of synced 2024-06-09 22:14:42 +12:00

No comment

This commit is contained in:
Rafał Mikrut 2022-08-29 21:13:12 +02:00
parent d4ab390d18
commit 3050832bd1

View file

@ -1033,7 +1033,7 @@ fn image_to_check<'a>(
if let Some(number_of_children) = hashes_parents.get_mut(hash_to_check) {
*number_of_children += 1;
} else {
hashes_parents.insert(hash_to_check, 1); // This line is different than in first algorithm because at start hashes without children are not zeroed as before
hashes_parents.insert(hash_to_check, 1);
}
}
}