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 6a5f500 commit eaa77d3Copy full SHA for eaa77d3
clang-tools-extra/docs/clang-tidy/checks/bugprone/crtp-constructor-accessibility.rst
@@ -83,3 +83,16 @@ Example:
83
Bad CompileTimeError;
84
85
CRTP<int> AlsoCompileTimeError;
86
+
87
+Limitations:
88
89
+* The check is not supported below C++11
90
91
+* The check does not handle when the derived class is passed as a variadic
92
+ template argument
93
94
+* Accessible functions that can construct the CRTP, like factory functions
95
+ are not checked
96
97
+The check also suggests a fix-its in some cases.
98
0 commit comments