/in/foo.cc: In function 'void minn(int&, int)':
/in/foo.cc:24:45: warning: the omitted middle operand in ?: will always be 'true', suggest explicit middle operand [-Wparentheses]
inline void minn(R int &a,const int b){a<b? :a=b;}
^
/in/foo.cc: In function 'void maxx(int&, int)':
/in/foo.cc:25:45: warning: the omitted middle operand in ?: will always be 'true', suggest explicit middle operand [-Wparentheses]
inline void maxx(R int &a,const int b){a>b? :a=b;}
^
/in/foo.cc: In function 'int yg()':
/in/foo.cc:77:1: warning: no return statement in function returning non-void [-Wreturn-type]
}
^