diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2012-09-26 16:39:56 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2012-09-26 16:39:56 +0000 |
commit | 526d24444c91404dc4165b141e5ec095125c1bc8 (patch) | |
tree | ae1cbdde0e2c16a3315a380742e9fcc2c6174e80 /include/clang-c | |
parent | e6d22027bc22d3767a2acdc80299c76b91159867 (diff) |
[libclang] Remove the ParentKind cursor kind from code-completion results.
This is to reduce dependency to cursors for the code-completion results.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@164705 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang-c')
-rw-r--r-- | include/clang-c/Index.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/clang-c/Index.h b/include/clang-c/Index.h index 80555357b1..c735781863 100644 --- a/include/clang-c/Index.h +++ b/include/clang-c/Index.h @@ -4322,8 +4322,7 @@ clang_getCompletionAnnotation(CXCompletionString completion_string, * \param completion_string The code completion string whose parent is * being queried. * - * \param kind If non-NULL, will be set to the kind of the parent context, - * or CXCursor_NotImplemented if there is no context. + * \param kind DEPRECATED: always set to CXCursor_NotImplemented if non-NULL. * * \returns The name of the completion parent, e.g., "NSObject" if * the completion string represents a method in the NSObject class. |