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 4293582 commit a80c8b0Copy full SHA for a80c8b0
cpp/autosar/test/rules/M14-6-1/test.cpp
@@ -73,7 +73,6 @@ template <typename T> class E : D {
73
m = 0; // COMPLIANT - does not apply to non dependent base types
74
g(); // COMPLIANT - does not apply to non dependent base types
75
TYPE t1 = 0; // COMPLIANT - does not apply to non dependent base types
76
- void (D::*p)() =
77
- &g; // COMPLIANT - does not apply to non dependent base types
+ // void (*p)() = &g; // NON_COMPILABLE - clang does not accept this
78
}
79
};
0 commit comments