From e2859fe4c9165cbb9cf2302945d2b51b0540a0bb Mon Sep 17 00:00:00 2001 From: batt Date: Wed, 9 Apr 2008 14:35:09 +0000 Subject: [PATCH] Fix doc. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1220 38d2e660-2303-0410-9eaa-f027e97ec537 --- bertos/cfg/macros.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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) */ -- 2.25.1