diff options
Diffstat (limited to 'include/clang-c/Index.h')
-rw-r--r-- | include/clang-c/Index.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/clang-c/Index.h b/include/clang-c/Index.h index cb0b3c1bab..01e7bce6bd 100644 --- a/include/clang-c/Index.h +++ b/include/clang-c/Index.h @@ -1474,6 +1474,11 @@ CINDEX_LINKAGE unsigned clang_isExpression(enum CXCursorKind); CINDEX_LINKAGE unsigned clang_isStatement(enum CXCursorKind); /** + * \brief Determine whether the given cursor kind represents an attribute. + */ +CINDEX_LINKAGE unsigned clang_isAttribute(enum CXCursorKind); + +/** * \brief Determine whether the given cursor kind represents an invalid * cursor. */ |