diff options
Diffstat (limited to 'clang/tools/libclang/CIndexUSRs.cpp')
-rw-r--r-- | clang/tools/libclang/CIndexUSRs.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/clang/tools/libclang/CIndexUSRs.cpp b/clang/tools/libclang/CIndexUSRs.cpp index 195463cbe28..f6e9aa358e2 100644 --- a/clang/tools/libclang/CIndexUSRs.cpp +++ b/clang/tools/libclang/CIndexUSRs.cpp @@ -336,11 +336,9 @@ void USRGenerator::VisitObjCContainerDecl(ObjCContainerDecl *D) { IgnoreResults = true; return; } - // Specially handle class extensions, which are anonymous categories. - // We want to mangle in the location to uniquely distinguish them. if (CD->IsClassExtension()) { - Out << "objc(ext)" << ID->getName() << '@'; - GenLoc(CD); + // An extension semantically continues the interface of the class. + GenObjCClass(ID->getName()); } else GenObjCCategory(ID->getName(), CD->getName()); |