From c1244358c6bcf02ee69ccc3cd0869695a37da61f Mon Sep 17 00:00:00 2001 From: Sakshi1306 Date: Tue, 31 Oct 2017 18:24:47 +0530 Subject: [PATCH] Comment deleted --- HeapSort/C++/HeapSort.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HeapSort/C++/HeapSort.cpp b/HeapSort/C++/HeapSort.cpp index 366415938..7ae4d1cd2 100644 --- a/HeapSort/C++/HeapSort.cpp +++ b/HeapSort/C++/HeapSort.cpp @@ -23,7 +23,7 @@ void heapify(int arr[], int n, int i) { swap(arr[i], arr[largest]); - // Recursively heapify the affected sub-tree + // Recursively heapify(arr, n, largest); } }