DoxygenPpErr  2011-08-23
Test project for doxygen preprocessor error
 All Files Functions Variables
misra_17_04_off.h
Go to the documentation of this file.
1 /*****************************************************************************
2 
3 \file misra_17_04_off.h
4 \brief <b>Turn MISRA warnings 17.4 off</b>
5 
6 \remark
7  - Version for IAR EW for Renesas RL78 1.30
8  - No doxygen commands allowed with doxygen 1.8.7
9 
10 *//***************************************************************************
11 
12 History:
13 2014-07-16 HaSchm
14 - Initial revision
15 
16 *****************************************************************************/
17 
18 
19 #ifdef __IAR_SYSTEMS_ICC__
20  /* Error[Pm088]: pointer arithmetic should not be used (MISRA C 2004 rule 17.4)
21  Error[Pm152]: array indexing shall only be applied to objects defined as
22  an array type (MISRA C 2004 rule 17.4)
23  */
24  #pragma diag_suppress=Pm088,Pm152,Pm077
25 #endif
26 
27 
28 /* eof misra_*_off.h */