prepare (1/3):
finished
make (2/3):
g++ -g -O2 -Wall -o main.o -c main.cpp
In file included from main.cpp:14:0:
unsorted_heap.h: In instantiation of 'TYPE unsorted_heap<TYPE, COMP>::dequeue_min() [with TYPE = data; COMP = comp]':
main.cpp:188:5: required from here
unsorted_heap.h:70:18: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int i=0;i<data.size();i++)
unsorted_heap.h: In instantiation of 'const TYPE& unsorted_heap<TYPE, COMP>::get_min() const [with TYPE = data; COMP = comp]':
main.cpp:188:5: required from here
unsorted_heap.h:89:18: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int i=0;i<data.size();i++)
main.cpp: In function 'int main(int, char**)':
main.cpp:175:38: warning: 'pql' may be used uninitialized in this function [-Wmaybe-uninitialized]
else pql->enqueue(Map[neighbour[i]]);
~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~
g++ -g -O2 -Wall -o main main.o
finished
clean (3/3):
finished
all task finished, build successfully