mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-05 23:28:48 +00:00
fix
This commit is contained in:
@@ -30,8 +30,7 @@ make :: proc(data: []$T, compare: $C) {
|
|||||||
|
|
||||||
// start from data parent, no need to consider children
|
// start from data parent, no need to consider children
|
||||||
for start := (length - 2) / 2; start >= 0; start -= 1 {
|
for start := (length - 2) / 2; start >= 0; start -= 1 {
|
||||||
sift_down(data, compare, start);
|
sift_down(data, compare, start)
|
||||||
start -= 1;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user