On 21 February 2011 20:57, Robert Gezelter wrote:
> Gentlemen,
>
> The example of the C preprocessor implementation of MIN is erroneous:
>
> #define MIN(X,Y) ((X) < (Y) ? : (X) : (Y))
>
> should read:
>
> #define MIN(X,Y) ((X) < (Y) ? (X) : (Y))
Thanks for the report, but I don't think any
Gentlemen,
The example of the C preprocessor implementation of MIN is erroneous:
#define MIN(X,Y) ((X) < (Y) ? : (X) : (Y))
should read:
#define MIN(X,Y) ((X) < (Y) ? (X) : (Y))
- Bob
+--+
| Robert "Bob" Gezelte