Skip to content

Commit

Permalink
make data/heap/resizer public (#17)
Browse files Browse the repository at this point in the history
This allows for the implicit parameter to be properly usable.
Odomontois authored Dec 9, 2024
1 parent 851e687 commit 8f22c9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion std/data/heap.kk
Original file line number Diff line number Diff line change
@@ -276,7 +276,7 @@ fun get-grandparent( i : int ) : maybe<int>
Just( i / 4 )

// Internal base function for dictating how to resize the vector buffer.
fun resizer( size : int ) : int
pub fun resizer( size : int ) : int
if size == 0 then
1
else

0 comments on commit 8f22c9a

Please sign in to comment.