/in/foo.cc: In function 'int main()':
/in/foo.cc:11:29: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<point>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
11 | #define FOR(i,x,y) for(i=x;i<=y;++i)
| ^
/in/foo.cc:66:9: note: in expansion of macro 'FOR'
66 | FOR(j,0,e[i].v.size()-1){
| ^~~
/in/foo.cc:11:29: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<point>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
11 | #define FOR(i,x,y) for(i=x;i<=y;++i)
| ^
/in/foo.cc:68:9: note: in expansion of macro 'FOR'
68 | FOR(k,0,e[0].v.size()-1)
| ^~~