Main Content

AUTOSAR C++14 Rule M16-3-2

The # and ## operators should not be used

Description

Rule Definition

The # and ## operators should not be used.

Rationale

The evaluation of the # and ## preprocessor operators does not have a specified execution order. Different compilers might evaluate these operators in different order of execution. The uncertainty of execution order might result in developer confusion or unexpected macro calculations. When possible, avoid using the # and ## preprocessor operators.

Polyspace Implementation

Polyspace ®raises this advisory when the # or ## operators are used in a macro definition.

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

expand all

#define STRING(X) { #X }                          //Noncompliant
#define CONCAT(X, Y) {X ## Y}                     //Noncompliant

Because the macro STRING(X) uses the # operator, Polyspace flags the macro as noncompliant.

Polyspace flags the macro CONCAT(X, Y) as noncompliant because it uses the ## operator.

Check Information

Group: Preprocessing Directives
Category: Advisory, Automated

Version History

Introduced in R2019a