From: Steve Naroff Date: Sat, 18 Jul 2009 15:38:31 +0000 (+0000) Subject: Fix typo from r76321. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e61ad0b7063fcd97204b1cce5558685144267eb6;p=clang Fix typo from r76321. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@76322 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/AST/Type.cpp b/lib/AST/Type.cpp index 64a090d174..23dbce2136 100644 --- a/lib/AST/Type.cpp +++ b/lib/AST/Type.cpp @@ -486,7 +486,7 @@ const ObjCInterfaceType *Type::getAsObjCQualifiedInterfaceType() const { } bool Type::isObjCQualifiedInterfaceType() const { - return getAsObjCQualifiedIdType() != 0; + return getAsObjCQualifiedInterfaceType() != 0; } const ObjCObjectPointerType *Type::getAsObjCObjectPointerType() const {