From: Ted Kremenek Date: Thu, 6 Mar 2014 05:37:35 +0000 (+0000) Subject: Remove 2 dead 'break' statements. The 'break' usage in this switch is inconsistent... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c5a9f9516093cda2722f3b76e2f21520dd8564c8;p=clang Remove 2 dead 'break' statements. The 'break' usage in this switch is inconsistent, making this hard to see. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@203079 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Sema/SemaDeclAttr.cpp b/lib/Sema/SemaDeclAttr.cpp index 739aee92a1..5351d0fa2e 100644 --- a/lib/Sema/SemaDeclAttr.cpp +++ b/lib/Sema/SemaDeclAttr.cpp @@ -4353,10 +4353,8 @@ static void ProcessDeclAttribute(Sema &S, Scope *scope, Decl *D, break; case AttributeList::AT_ConsumableAutoCast: handleSimpleAttribute(S, D, Attr); break; - break; case AttributeList::AT_ConsumableSetOnRead: handleSimpleAttribute(S, D, Attr); break; - break; case AttributeList::AT_CallableWhen: handleCallableWhenAttr(S, D, Attr); break;