summaryrefslogtreecommitdiff
path: root/include/clang-c
diff options
context:
space:
mode:
authorNikolai Kosjar <nikolai.kosjar@qt.io>2019-05-10 13:58:34 +0000
committerNikolai Kosjar <nikolai.kosjar@qt.io>2019-05-10 13:58:34 +0000
commitc06fed002f4859ab3eaab5401d7d48a75ffecd89 (patch)
treef38d615f63944acb2fab2655c93398d248f10562 /include/clang-c
parent966f61d14e202ac0976a67199556123f895a710e (diff)
downloadclang-c06fed002f4859ab3eaab5401d7d48a75ffecd89.tar.gz
[libclang] Forward isInline for NamespaceDecl to libclang
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@360428 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang-c')
-rw-r--r--include/clang-c/Index.h8
1 files changed, 7 insertions, 1 deletions
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,