diff options
author | Chris Lattner <sabre@nondot.org> | 2009-03-29 04:30:19 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-03-29 04:30:19 +0000 |
commit | 32d3f9cee651b8f7feb34f99ccce00e6fc33d6a0 (patch) | |
tree | 558dea6591f5df8bb8be823ead901687d5d9ecca /lib/Sema/SemaDeclObjC.cpp | |
parent | d59ad42b3e6361259c08d53fe5346960eef840c2 (diff) |
tighten this up, the decl *must* be a declcontext, no need for the dynamic check.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@67978 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/SemaDeclObjC.cpp')
-rw-r--r-- | lib/Sema/SemaDeclObjC.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Sema/SemaDeclObjC.cpp b/lib/Sema/SemaDeclObjC.cpp index 8809eb9442..d84a0d1726 100644 --- a/lib/Sema/SemaDeclObjC.cpp +++ b/lib/Sema/SemaDeclObjC.cpp @@ -1409,7 +1409,7 @@ Sema::DeclPtrTy Sema::ActOnMethodDeclaration( ObjCMethodDecl* ObjCMethod = ObjCMethodDecl::Create(Context, MethodLoc, EndLoc, Sel, resultDeclType, - dyn_cast<DeclContext>(ClassDecl), + cast<DeclContext>(ClassDecl), MethodType == tok::minus, isVariadic, false, MethodDeclKind == tok::objc_optional ? |