diff options
| author | Erik Verbruggen <erikjv@me.com> | 2011-10-13 09:41:32 +0000 |
|---|---|---|
| committer | Erik Verbruggen <erikjv@me.com> | 2011-10-13 09:41:32 +0000 |
| commit | ca98f2a63f94d83860b264c365cf5c5d3f64678b (patch) | |
| tree | b0fda2fa66f0d4922a93be6328ed2cb1401efc4e /clang/include/clang-c | |
| parent | 25f6d3e32186fde2e89ed278c94c05ad82e563eb (diff) | |
| download | bcm5719-llvm-ca98f2a63f94d83860b264c365cf5c5d3f64678b.tar.gz bcm5719-llvm-ca98f2a63f94d83860b264c365cf5c5d3f64678b.zip | |
Allow for annotate attributes after access specifiers. When such
attributes are found, propagate them to subsequent declarations.
llvm-svn: 141861
Diffstat (limited to 'clang/include/clang-c')
| -rw-r--r-- | clang/include/clang-c/Index.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/include/clang-c/Index.h b/clang/include/clang-c/Index.h index 9ff04f4eb25..3df1670f10c 100644 --- a/clang/include/clang-c/Index.h +++ b/clang/include/clang-c/Index.h @@ -1830,7 +1830,8 @@ enum CXCursorKind { CXCursor_IBOutletCollectionAttr = 403, CXCursor_CXXFinalAttr = 404, CXCursor_CXXOverrideAttr = 405, - CXCursor_LastAttr = CXCursor_CXXOverrideAttr, + CXCursor_AnnotateAttr = 406, + CXCursor_LastAttr = CXCursor_AnnotateAttr, /* Preprocessing */ CXCursor_PreprocessingDirective = 500, |

