From: batt Date: Wed, 9 Apr 2008 14:35:09 +0000 (+0000) Subject: Fix doc. X-Git-Tag: 1.0.0~32 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=e2859fe4c9165cbb9cf2302945d2b51b0540a0bb;p=bertos.git Fix doc. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1220 38d2e660-2303-0410-9eaa-f027e97ec537 --- 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) */