diff options
| author | Ted Kremenek <kremenek@apple.com> | 2010-05-19 21:51:10 +0000 |
|---|---|---|
| committer | Ted Kremenek <kremenek@apple.com> | 2010-05-19 21:51:10 +0000 |
| commit | 08de5c14187cade575f00214ddb2044b6be218ba (patch) | |
| tree | 43f15f963da9325971ab6a89f75d3b512672fb1a /clang/include/clang-c | |
| parent | d754848f10c86d33079756b6a2d27d03a7f49395 (diff) | |
| download | bcm5719-llvm-08de5c14187cade575f00214ddb2044b6be218ba.tar.gz bcm5719-llvm-08de5c14187cade575f00214ddb2044b6be218ba.zip | |
Move CXCursor_FirstDecl definition later to make the results more readable in the debugger.
llvm-svn: 104171
Diffstat (limited to 'clang/include/clang-c')
| -rw-r--r-- | clang/include/clang-c/Index.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/include/clang-c/Index.h b/clang/include/clang-c/Index.h index d1840f5e6be..663737a0f36 100644 --- a/clang/include/clang-c/Index.h +++ b/clang/include/clang-c/Index.h @@ -648,7 +648,6 @@ CINDEX_LINKAGE void clang_disposeTranslationUnit(CXTranslationUnit); */ enum CXCursorKind { /* Declarations */ - CXCursor_FirstDecl = 1, /** * \brief A declaration whose specific kind is not exposed via this * interface. @@ -707,6 +706,7 @@ enum CXCursorKind { /** \brief A linkage specification, e.g. 'extern "C"'. */ CXCursor_LinkageSpec = 23, + CXCursor_FirstDecl = CXCursor_UnexposedDecl, CXCursor_LastDecl = CXCursor_LinkageSpec, /* References */ |

