prepare (1/3):
finished
make (2/3):
g++ -g -Wall -o main.o -c main.cpp
In file included from main.cpp:13:0:
fib_heap.h: In instantiation of 'TYPE fib_heap<TYPE, COMP>::dequeue_min() [with TYPE = Point; COMP = compare_t]':
main.cpp:152:1: required from here
fib_heap.h:124:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (int i = 0; i < popOut->child.size(); ++i) {
fib_heap.h: In instantiation of 'int fib_heap<TYPE, COMP>::consolidate() [with TYPE = Point; COMP = compare_t]':
fib_heap.h:127:44: required from 'TYPE fib_heap<TYPE, COMP>::dequeue_min() [with TYPE = Point; COMP = compare_t]'
main.cpp:152:1: required from here
fib_heap.h:154:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (int i = 0; i < rootList.size(); ++i) {
fib_heap.h:183:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (int i = 1; i < rootList.size(); ++i)
g++ -g -Wall -o main main.o
finished
clean (3/3):
finished
all task finished, build successfully