* were mixed in an expression. \
* Even in _a and _b are of the same type, \
* if mixed in an expression the type will be \
- * promoted to int! \
- */ \
+ * (at least) promoted to int! \
+ */ \
((typeof(_a))((_a < _b) ? _a : _b)); \
})
#define MAX(a,b) ({ \
* were mixed in an expression. \
* Even in _a and _b are of the same type, \
* if mixed in an expression the type will be \
- * promoted to int! \
- */ \
+ * (at least) promoted to int! \
+ */ \
((typeof(_a))((_a > _b) ? _a : _b)); \
})
#else /* !(COMPILER_STATEMENT_EXPRESSIONS && COMPILER_TYPEOF) */