Skip to content

Commit 6ce620b

Browse files
committed
Fix a missing break from a switch case -Wimplicit-fallthrough
1 parent fa9cef5 commit 6ce620b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

clang/lib/Analysis/FlowSensitive/SmartPointerAccessorCaching.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,8 @@ bool hasSmartPointerClassShape(const CXXRecordDecl &RD, bool &HasGet,
7171
->getCanonicalTypeUnqualified();
7272
}
7373
}
74-
}
74+
}
75+
break;
7576
default:
7677
break;
7778
}

0 commit comments

Comments
 (0)