prepare (1/3):
finished
make (2/3):
g++ -g -Wall -O2 -o main.o -c main.cpp
main.cpp: In function 'int main(int, char**)':
main.cpp:221:6: warning: unused variable 'size' [-Wunused-variable]
int size=width*height;
^~~~
In file included from main.cpp:13:0:
binary_heap.h: In instantiation of 'void binary_heap<TYPE, COMP>::percolate_down(int) [with TYPE = point; COMP = point_less]':
main.cpp:325:1: required from here
binary_heap.h:116:9: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
while(j<data.size()){
binary_heap.h:118:11: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
if((j+1)<data.size()){
g++ -g -Wall -O2 -o main main.o
finished
clean (3/3):
finished
all task finished, build successfully