X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fcfg%2Fmacros.h;h=dda5fe0e635a023bfc1c3cb338b9d65d0a09ff8d;hb=77b037974e46f78a0c6746753bf8d1c07b9630fc;hp=1006fc42e6ac9cfee30ce838aeb04a7953933b4f;hpb=791e167e053bdd9250d34a9a5ccae6ccde4d6679;p=bertos.git diff --git a/bertos/cfg/macros.h b/bertos/cfg/macros.h index 1006fc42..dda5fe0e 100644 --- a/bertos/cfg/macros.h +++ b/bertos/cfg/macros.h @@ -68,8 +68,8 @@ * 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) ({ \ @@ -84,8 +84,8 @@ * 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) */