From c5a9f9516093cda2722f3b76e2f21520dd8564c8 Mon Sep 17 00:00:00 2001 From: Ted Kremenek Date: Thu, 6 Mar 2014 05:37:35 +0000 Subject: [PATCH] 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 --- lib/Sema/SemaDeclAttr.cpp | 2 -- 1 file changed, 2 deletions(-) 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; -- 2.50.1