[cfe-commits] r93779 - /cfe/trunk/tools/CIndex/CXCursor.cpp
Ted Kremenek
kremenek at apple.com
Mon Jan 18 14:07:45 PST 2010
Author: kremenek
Date: Mon Jan 18 16:07:45 2010
New Revision: 93779
URL: http://llvm.org/viewvc/llvm-project?rev=93779&view=rev
Log:
Explicitly not handle ObjCForwardProtocolDecl in GetCursorKind().
Modified:
cfe/trunk/tools/CIndex/CXCursor.cpp
Modified: cfe/trunk/tools/CIndex/CXCursor.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/tools/CIndex/CXCursor.cpp?rev=93779&r1=93778&r2=93779&view=diff
==============================================================================
--- cfe/trunk/tools/CIndex/CXCursor.cpp (original)
+++ cfe/trunk/tools/CIndex/CXCursor.cpp Mon Jan 18 16:07:45 2010
@@ -45,6 +45,9 @@
case Decl::ObjCClass:
// FIXME
return CXCursor_NotImplemented;
+ case Decl::ObjCForwardProtocol:
+ // FIXME
+ return CXCursor_NotImplemented;
case Decl::ObjCImplementation: return CXCursor_ObjCClassDefn;
case Decl::ObjCInterface: return CXCursor_ObjCInterfaceDecl;
case Decl::ObjCIvar: return CXCursor_ObjCIvarDecl;
More information about the cfe-commits
mailing list