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 6b98134 commit be7f185Copy full SHA for be7f185
clang/docs/analyzer/checkers.rst
@@ -610,7 +610,7 @@ pure virtual – but may be still surprising for the programmer.)
610
void releaseResources() {
611
// warn: This can call the pure virtual method A::getKind() when this is
612
// called from the destructor.
613
- callSomeFunction(getKind())
+ callSomeFunction(getKind());
614
}
615
};
616
@@ -936,7 +936,7 @@ checker does not report them**.
936
937
// warn: This can be called within ~A() and calls A::getKind() even if
938
// we are destructing a class that is derived from A.
939
940
941
942
0 commit comments