From 0ddaeb9b031070ec64afe92d9892875ac44df427 Mon Sep 17 00:00:00 2001 From: John McCall Date: Mon, 17 Oct 2011 18:09:15 +0000 Subject: Add a new placeholder type to represent "unbridged" casts in ARC. No semantic analysis yet. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@142208 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/libclang/CIndexUSRs.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'tools/libclang/CIndexUSRs.cpp') diff --git a/tools/libclang/CIndexUSRs.cpp b/tools/libclang/CIndexUSRs.cpp index 121d67d1d2..91ceb7c78b 100644 --- a/tools/libclang/CIndexUSRs.cpp +++ b/tools/libclang/CIndexUSRs.cpp @@ -584,6 +584,7 @@ void USRGenerator::VisitType(QualType T) { case BuiltinType::BoundMember: case BuiltinType::Dependent: case BuiltinType::UnknownAny: + case BuiltinType::ARCUnbridgedCast: IgnoreResults = true; return; case BuiltinType::ObjCId: -- cgit v1.2.1