diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2012-09-14 01:42:30 -0500 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2012-09-14 03:49:21 -0500 |
commit | b42094b2b06f4837a6df65e6b87caf8139fc0d0d (patch) | |
tree | 134a3f25c7e676e092a7ac5c3b29f78b98dbc301 /sal/inc | |
parent | e50ab7bb891cbd7b5f95c124ce29a3e595b599ee (diff) |
remove use of SAL_MIN() macro
Change-Id: Ia91118388240c9a54d010b94aef34ad528ce5761
Diffstat (limited to 'sal/inc')
-rw-r--r-- | sal/inc/sal/macros.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/sal/inc/sal/macros.h b/sal/inc/sal/macros.h index fb52d3c686a6..6f10585c542e 100644 --- a/sal/inc/sal/macros.h +++ b/sal/inc/sal/macros.h @@ -32,10 +32,6 @@ #include <stddef.h> -#ifndef SAL_MIN -# define SAL_MIN(a,b) (((a) < (b)) ? (a) : (b)) -#endif - #ifndef SAL_N_ELEMENTS # if defined(__cplusplus) && ( defined(__GXX_EXPERIMENTAL_CXX0X__) || __cplusplus >= 201103L ) /* |