Skip to content

Commit 2d5dc5c

Browse files
authored
[clang][dataflow] Fix a missing break from a switch case -Wimplicit-fallthrough (llvm#120739)
Missed when changing code in llvm#120102
1 parent acfd26a commit 2d5dc5c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/lib/Analysis/FlowSensitive/SmartPointerAccessorCaching.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ bool hasSmartPointerClassShape(const CXXRecordDecl &RD, bool &HasGet,
7171
->getCanonicalTypeUnqualified();
7272
}
7373
}
74-
}
74+
} break;
7575
default:
7676
break;
7777
}

0 commit comments

Comments
 (0)