prepare (1/3):
finished
make (2/3):
clang++ -g -Wall -O2 -o main.o -c main.cpp
In file included from main.cpp:3:
./unsorted_heap.h:81:12: warning: reference to stack memory associated with local variable 'm' returned [-Wreturn-stack-address]
return m;
^
./unsorted_heap.h:19:3: note: in instantiation of member function 'unsorted_heap<point<int>, compare_t>::get_min' requested here
unsorted_heap(COMP comp = COMP());
^
main.cpp:50:61: note: in instantiation of member function 'unsorted_heap<point<int>, compare_t>::unsorted_heap' requested here
if (strcmp(optarg,"UNSORTED")==0)path = new unsorted_heap<point<int>, compare_t>;
^
1 warning generated.
clang++ -g -Wall -O2 -o main main.o
finished
clean (3/3):
finished
all task finished, build successfully