This website uses cookies and other technology to provide you a more personalized
experience. By
continuing the view of our web-pages you accept the terms of using these files. If you
don't
want your personal data to be processed, please, leave this site.
Learn More →
V1040. Possible typo in the spelling of a pre-defined macro name.
The analyzer has detected a potentially misspelled name of a pre-defined macro.
Non-compliant example:
#if defined (__linux__) || defined (__APPLE_)
The same expression fixed:
#if defined (__linux__) || defined (__APPLE__)
Another example demonstrating a typo:
#ifdef __WLN32__
Correct version:
#ifdef __WIN32__
You can look at examples of errors detected by the V1040 diagnostic. |