Natalie Pueyo 7 лет назад
Родитель
Сommit
9d18b0d213
2 измененных файлов с 1 добавлено и 2 удалено
  1. 1 1
      program2/priorityqueue.cpp
  2. 0 1
      program2/priorityqueue.h

+ 1 - 1
program2/priorityqueue.cpp

@@ -16,7 +16,7 @@ void PriorityQueue::initiateHeap(int capacity){
     heapArray = new int[max_size + 1];
 }
 
-// inserts a new key into end of heap array to then 
+// inserts a new key into end of heap array to then
 void PriorityQueue::insert(int key){
   if(heap_size == max_size){
     std::cout << "PriorityQueue::insert called on full priority queue" << std::endl;

+ 0 - 1
program2/priorityqueue.h

@@ -1,4 +1,3 @@
-
 // include guard
 #ifndef PRIORITYQ_H
 #define PRIORITYQ_H