We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 795f67c commit bb14956Copy full SHA for bb14956
cpp/autosar/test/rules/A3-3-1/test.cpp
@@ -35,4 +35,8 @@ namespace n {
35
void f5() { // COMPLIANT
36
int i = 0;
37
}
38
-} // namespace n
+} // namespace n
39
+
40
+const int c = 1; // COMPLIANT - internal linkage
41
+const char *const str2 = "foo"; // COMPLIANT - internal linkage
42
+constexpr int k = 1; // COMPLIANT - internal linkage
0 commit comments