Skip to content

Commit 2464d43

Browse files
committed
deleted line 27
1 parent 3a7a266 commit 2464d43

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

data_structures/binaryheap.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ class MinHeap {
2424

2525
/** to heapify a subtree with the root at given index
2626
*/
27-
void MinHeapify(int);
2827

2928
int parent(int i) { return (i - 1) / 2; }
3029

0 commit comments

Comments
 (0)