![]() |
![]() |
0890 | ![]() |
||||
![]() | |||||||
| Preprocessing | |||||||
The macro referred to in this #ifdef or #ifndef directive was un-defined in a #undef directive in a previous #if block. For example:
/*PRQA S 3211,3408 ++*/
#define AA 1
#define ONE 1
#define TWO 2
#define THREE 3
#define FOUR 4
#if AA
#undef ONE /* 0841 */
#undef TWO /* 0841 */
#undef THREE /* 0841 */
#undef FOUR /* 0841 */
#endif
#ifdef ONE /* 0890 */
#endif
#ifndef TWO /* 0890 */
#endif
#if defined THREE /* 0890 */
#endif
#if !defined FOUR /* 0890 */
#endif
int x = 0;
No MISRA C:2012 Rules applicable to message 0890
See also:
![]() | ||
| QA·C Source Code Analyser 8.1
MISRA C:2012 Compliance Module 1.0 © 2012 Programming Research. www.programmingresearch.com | Personality Groups | Glossary | Message Index | MISRA C:2012 Rule Index | Contents |