From c06fed002f4859ab3eaab5401d7d48a75ffecd89 Mon Sep 17 00:00:00 2001 From: Nikolai Kosjar Date: Fri, 10 May 2019 13:58:34 +0000 Subject: [libclang] Forward isInline for NamespaceDecl to libclang git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@360428 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/clang-c/Index.h | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'include/clang-c') diff --git a/include/clang-c/Index.h b/include/clang-c/Index.h index 24b865cbaf..7982d65bf2 100644 --- a/include/clang-c/Index.h +++ b/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, -- cgit v1.2.1