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:
Ted Kremenek 2014-03-06 05:37:35 +00:00
parent ad71fc6104
commit 7bceca1fcf
1 changed files with 0 additions and 2 deletions

View File

@ -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;