I get the warning: left-hand operand of comma expression has no effect
This occurs when the macro below is invoked:
#define MAX(a,b) ((a) < (b) ? (b) : (a))
I can't see anything wrong with the macro as declared above - why am I getting this warning?
MAX? – Basile Starynkevitch Nov 7 '11 at 21:18