From 6c500b131521e50c25db10c16bdd4b47e0651cea Mon Sep 17 00:00:00 2001 From: DeLesley Hutchins Date: Fri, 12 Oct 2012 21:49:04 +0000 Subject: [PATCH] Fix warnings introduced by r165826. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@165829 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Sema/SemaDecl.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/Sema/SemaDecl.cpp b/lib/Sema/SemaDecl.cpp index a00f60f681..4161078d65 100644 --- a/lib/Sema/SemaDecl.cpp +++ b/lib/Sema/SemaDecl.cpp @@ -1739,6 +1739,8 @@ DeclHasAttr(const Decl *D, const Attr *A) { case attr::AcquiredBefore: case attr::AcquiredAfter: return false; + default: + ; } const OwnershipAttr *OA = dyn_cast(A); -- 2.50.1