forked from OSchip/llvm-project
Remove 2 dead 'break' statements. The 'break' usage in this switch is inconsistent, making this hard to see.
llvm-svn: 203079
This commit is contained in:
parent
ad71fc6104
commit
7bceca1fcf
|
@ -4353,10 +4353,8 @@ static void ProcessDeclAttribute(Sema &S, Scope *scope, Decl *D,
|
|||
break;
|
||||
case AttributeList::AT_ConsumableAutoCast:
|
||||
handleSimpleAttribute<ConsumableAutoCastAttr>(S, D, Attr); break;
|
||||
break;
|
||||
case AttributeList::AT_ConsumableSetOnRead:
|
||||
handleSimpleAttribute<ConsumableSetOnReadAttr>(S, D, Attr); break;
|
||||
break;
|
||||
case AttributeList::AT_CallableWhen:
|
||||
handleCallableWhenAttr(S, D, Attr);
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue