This commit is contained in:
Dale Weiler
2022-06-04 04:47:52 -04:00
parent c1d55b9296
commit a996cfc536

View File

@@ -30,8 +30,7 @@ make :: proc(data: []$T, compare: $C) {
// start from data parent, no need to consider children
for start := (length - 2) / 2; start >= 0; start -= 1 {
sift_down(data, compare, start);
start -= 1;
sift_down(data, compare, start)
}
}