diff options
author | Douglas Gregor <dgregor@apple.com> | 2010-01-19 23:25:01 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2010-01-19 23:25:01 +0000 |
commit | 084236fafd6e3916de2d5970340a9f88a5f2b042 (patch) | |
tree | c600b85826d6e65d4b5e082c9fd499a3cb7453c6 /clang/include/clang-c | |
parent | 8f40bbee78b8b4b589d374a4ea80fdc62a70b995 (diff) | |
download | bcm5719-llvm-084236fafd6e3916de2d5970340a9f88a5f2b042.tar.gz bcm5719-llvm-084236fafd6e3916de2d5970340a9f88a5f2b042.zip |
Kill CXCursor_ObjCSelectorRef, CXCursor_VarRef, CXCursor_FunctionRef,
and CXCursor_EnumConstantRef; they've been subsumed by expression
references, which do a much nicer job.
llvm-svn: 93947
Diffstat (limited to 'clang/include/clang-c')
-rw-r--r-- | clang/include/clang-c/Index.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/clang/include/clang-c/Index.h b/clang/include/clang-c/Index.h index 8a2ff8822e6..1abf6490e7c 100644 --- a/clang/include/clang-c/Index.h +++ b/clang/include/clang-c/Index.h @@ -113,12 +113,7 @@ enum CXCursorKind { CXCursor_ObjCSuperClassRef = 40, CXCursor_ObjCProtocolRef = 41, CXCursor_ObjCClassRef = 42, - - CXCursor_ObjCSelectorRef = 43, /* Expression references */ - CXCursor_VarRef = 44, - CXCursor_FunctionRef = 45, - CXCursor_EnumConstantRef = 46, - CXCursor_LastRef = 46, + CXCursor_LastRef = 42, /* Error conditions */ CXCursor_FirstInvalid = 70, |