From b39fc142fd1bf628e7c99254f9ec94eb5584a374 Mon Sep 17 00:00:00 2001 From: Adrian Prantl Date: Fri, 17 May 2013 23:58:45 +0000 Subject: [PATCH] Drop the const from the isa test. llvm-svn: 182178 --- clang/lib/CodeGen/CGDebugInfo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/lib/CodeGen/CGDebugInfo.cpp b/clang/lib/CodeGen/CGDebugInfo.cpp index a0187186ff84..a270976934f3 100644 --- a/clang/lib/CodeGen/CGDebugInfo.cpp +++ b/clang/lib/CodeGen/CGDebugInfo.cpp @@ -161,7 +161,7 @@ StringRef CGDebugInfo::getObjCMethodName(const ObjCMethodDecl *OMD) { dyn_cast(DC)){ OS << ((const NamedDecl *)OCD)->getIdentifier()->getNameStart() << '(' << OCD->getIdentifier()->getNameStart() << ')'; - } else if (isa(DC)) { + } else if (isa(DC)) { // We can extract the type of the class from the self pointer. if (ImplicitParamDecl* SelfDecl = OMD->getSelfDecl()) { QualType ClassTy = -- GitLab