Record Detail

Compile Error

prepare (1/3): 
finished

make (2/3): 
g++ -g -Wall -o test_heap.o -c test_heap.cpp 
In file included from test_heap.cpp:3:0:
binary_heap.h: In instantiation of 'void binary_heap<TYPE, COMP>::percolateDown(int) [with TYPE = int; COMP = compare_t]':
test_heap.cpp:86:1:   required from here
binary_heap.h:116:18: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
     for (j=2*id;j<=this->size();j=2*id){
binary_heap.h:117:13: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
         if(j<this->size()&&this->compare(this->data[j],this->data[j-1])) j++;
g++ -g -Wall -o test_heap test_heap.o
finished

clean (3/3): 
mv: cannot stat 'build/main': No such file or directory

build failed

Information

Submit By
Type
Submission
Homework
Lab05-PriorityQueues
Language
GNU Make
Submit At
2019-11-13 00:51:29
Judged At
2019-11-15 16:59:20
Judged By
Score
0
Total Time
0ms
Peak Memory
0 Bytes