diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2013-09-25 00:14:38 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2013-09-25 00:14:38 +0000 |
commit | 16834f1cf9d59743b70a286f291b2c753dfae5bc (patch) | |
tree | 7318198f1e5e1920413c8896b712da412d1e0e3d /clang/include/clang-c | |
parent | aff6a0caa2fc861cfa9ed70d0c1a4e280ccfba9f (diff) | |
download | bcm5719-llvm-16834f1cf9d59743b70a286f291b2c753dfae5bc.tar.gz bcm5719-llvm-16834f1cf9d59743b70a286f291b2c753dfae5bc.zip |
[libclang] Provide location for attributes and expose 'packed' attribute.
Patch by Loïc Jaquemet!
llvm-svn: 191345
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 b294e41439f..4285cc5922f 100644 --- a/clang/include/clang-c/Index.h +++ b/clang/include/clang-c/Index.h @@ -2095,7 +2095,8 @@ enum CXCursorKind { CXCursor_CXXOverrideAttr = 405, CXCursor_AnnotateAttr = 406, CXCursor_AsmLabelAttr = 407, - CXCursor_LastAttr = CXCursor_AsmLabelAttr, + CXCursor_PackedAttr = 408, + CXCursor_LastAttr = CXCursor_PackedAttr, /* Preprocessing */ CXCursor_PreprocessingDirective = 500, |