std.cfg: Removed MIN/MAX macros since they cause problems with http://cppcheck.osuosl.org:8000/amap-align

This commit is contained in:
orbitcowboy 2019-04-03 09:11:48 +02:00
parent de4f57ec0f
commit 7ac3bf5fd8
1 changed files with 0 additions and 3 deletions

View File

@ -36,9 +36,6 @@
<define name="UINT_LEAST16_MAX" value="65535"/>
<define name="UINT_LEAST32_MAX" value="4294967295"/>
<define name="UINT_LEAST64_MAX" value="18446744073709551615"/>
<!-- These MIN/MAX macros are not part of the language but they are implemented and used very often -->
<define name="MAX(a,b)" value="(((a) &gt; (b)) ? (a) : (b))"/>
<define name="MIN(a,b)" value="(((a) &lt; (b)) ? (a) : (b))"/>
<!-- errno_t is a typedef for int -->
<define name="errno_t" value="int"/>
<!-- void abort(void); -->