diff options
author | Nikolai Kosjar <nikolai.kosjar@qt.io> | 2019-05-10 13:58:34 +0000 |
---|---|---|
committer | Nikolai Kosjar <nikolai.kosjar@qt.io> | 2019-05-10 13:58:34 +0000 |
commit | cfe1ab97d60321ad78ce6f655e1340148bb1a83e (patch) | |
tree | 6c2cc5e195df2a74862809700dfb9e223cf68bc9 /clang/include/clang-c | |
parent | df12933d918e005e338594d5e21af026c596c6d0 (diff) | |
download | bcm5719-llvm-cfe1ab97d60321ad78ce6f655e1340148bb1a83e.tar.gz bcm5719-llvm-cfe1ab97d60321ad78ce6f655e1340148bb1a83e.zip |
[libclang] Forward isInline for NamespaceDecl to libclang
llvm-svn: 360428
Diffstat (limited to 'clang/include/clang-c')
-rw-r--r-- | clang/include/clang-c/Index.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/clang/include/clang-c/Index.h b/clang/include/clang-c/Index.h index 24b865cbaf3..7982d65bf23 100644 --- a/clang/include/clang-c/Index.h +++ b/clang/include/clang-c/Index.h @@ -32,7 +32,7 @@ * compatible, thus CINDEX_VERSION_MAJOR is expected to remain stable. */ #define CINDEX_VERSION_MAJOR 0 -#define CINDEX_VERSION_MINOR 56 +#define CINDEX_VERSION_MINOR 57 #define CINDEX_VERSION_ENCODE(major, minor) ( \ ((major) * 10000) \ @@ -3932,6 +3932,12 @@ CINDEX_LINKAGE unsigned clang_Cursor_isAnonymous(CXCursor C); */ CINDEX_LINKAGE unsigned clang_Cursor_isAnonymousRecordDecl(CXCursor C); +/** + * Determine whether the given cursor represents an inline namespace + * declaration. + */ +CINDEX_LINKAGE unsigned clang_Cursor_isInlineNamespace(CXCursor C); + enum CXRefQualifierKind { /** No ref-qualifier was provided. */ CXRefQualifier_None = 0, |