AUTOSAR C++14 Rule M16-2-3
Include guards shall be provided
Description
Rule Definition
Include guards shall be provided.
Rationale
When a translation unit contains a complex hierarchy of nested header files, it is possible for a particular header file to be included more than once, leading to confusion. If this multiple inclusion produces multiple or conflicting definitions, then your program can have undefined or erroneous behavior.
For instance, suppose that a header file contains:
#ifdef _WIN64 int env_var; #elseif long int env_var; #endif
_WIN64
and another that undefines it, you can have conflicting
definitions of env_var
.To avoid multiple inclusion of the same file, add include guards to the beginning of header files. Use either of these formats:
<start-of-file> // Comments allowed here #if !defined ( identifier ) #define identifier // Contents of file #endif <end-of-file>
<start-of-file> // Comments allowed here #ifndef identifier #define identifier // Contents of file #endif <end-of-file>
Polyspace Implementation
The checker raises a violation if a header file does not contain an include guard.
For instance, this code uses an include guard for the #define
and #include
statements. This code does not violate the
rule:
// Contents of a header file #ifndef FILE_H #define FILE_H #include "libFile.h" #endif
You might mistakenly use different identifiers in the
#ifndef
and#define
statements:#ifndef MACRO #define MICRO //... #endif
You might inadvertently use
#ifdef
instead of#ifndef
or omit the#define
statement.
Troubleshooting
If you expect a rule violation but Polyspace does not report it, see Diagnose Why Coding Standard Violations Do Not Appear as Expected.
Examples
Check Information
Group: Preprocessing Directives |
Category: Required, Automated |
Version History
Introduced in R2019a