prepare (1/3):
finished
make (2/3):
clang++ -g -Wall -O2 -o main.o -c main.cpp
In file included from main.cpp:5:
./fib_heap.h:191:11: warning: unused variable 'temp_child' [-Wunused-variable]
node *temp_child = NULL;
^
./fib_heap.h:19:3: note: in instantiation of member function 'fib_heap<cell *, compare_t>::dequeue_min' requested here
fib_heap(COMP comp = COMP());
^
main.cpp:31:28: note: in instantiation of member function 'fib_heap<cell *, compare_t>::fib_heap' requested here
my_queue = new fib_heap<cell*, compare_t>;
^
1 warning generated.
clang++ -g -Wall -O2 -o get_option.o -c get_option.cpp
get_option.cpp:3:23: warning: ISO C++11 does not allow conversion from string literal to 'char *' [-Wwritable-strings]
char* optstring = "vi:";
^
1 warning generated.
clang++ -g -Wall -O2 -o shortest_path_impl.o -c shortest_path_impl.cpp
clang++ -g -Wall -O2 -o main main.o get_option.o shortest_path_impl.o
finished
clean (3/3):
finished
all task finished, build successfully