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 eb1b47c commit 4555ae3Copy full SHA for 4555ae3
clang/lib/StaticAnalyzer/Core/ExplodedGraph.cpp
@@ -349,9 +349,8 @@ const Stmt *ExplodedNode::getStmtForDiagnostics() const {
349
350
const Stmt *ExplodedNode::getNextStmtForDiagnostics(bool skipPurge) const {
351
for (const ExplodedNode *N = getFirstSucc(); N; N = N->getFirstSucc()) {
352
- if (skipPurge && N->getLocation().isPurgeKind()) {
+ if (skipPurge && N->getLocation().isPurgeKind())
353
continue;
354
- }
355
if (const Stmt *S = N->getStmtForDiagnostics()) {
356
// Check if the statement is '?' or '&&'/'||'. These are "merges",
357
// not actual statement points.
0 commit comments