aboutsummaryrefslogtreecommitdiff
path: root/include/clang-c
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2013-04-24 06:52:14 +0000
committerTed Kremenek <kremenek@apple.com>2013-04-24 06:52:14 +0000
commit3b6f56a51e50ec11cbd1f7e3aa4785fffa4e839d (patch)
treea67fcc0ef8503cd4fab6340ab1d77c4499547fc8 /include/clang-c
parentaf8497681e38106ad6f84408e029537e2a13d79d (diff)
Remove CXCursorSet and related APIs. There are no known clients.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@180174 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang-c')
-rw-r--r--include/clang-c/Index.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/include/clang-c/Index.h b/include/clang-c/Index.h
index 37072a7658..218b37707d 100644
--- a/include/clang-c/Index.h
+++ b/include/clang-c/Index.h
@@ -2377,38 +2377,6 @@ CINDEX_LINKAGE enum CXLanguageKind clang_getCursorLanguage(CXCursor cursor);
*/
CINDEX_LINKAGE CXTranslationUnit clang_Cursor_getTranslationUnit(CXCursor);
-
-/**
- * \brief A fast container representing a set of CXCursors.
- */
-typedef struct CXCursorSetImpl *CXCursorSet;
-
-/**
- * \brief Creates an empty CXCursorSet.
- */
-CINDEX_LINKAGE CXCursorSet clang_createCXCursorSet(void);
-
-/**
- * \brief Disposes a CXCursorSet and releases its associated memory.
- */
-CINDEX_LINKAGE void clang_disposeCXCursorSet(CXCursorSet cset);
-
-/**
- * \brief Queries a CXCursorSet to see if it contains a specific CXCursor.
- *
- * \returns non-zero if the set contains the specified cursor.
-*/
-CINDEX_LINKAGE unsigned clang_CXCursorSet_contains(CXCursorSet cset,
- CXCursor cursor);
-
-/**
- * \brief Inserts a CXCursor into a CXCursorSet.
- *
- * \returns zero if the CXCursor was already in the set, and non-zero otherwise.
-*/
-CINDEX_LINKAGE unsigned clang_CXCursorSet_insert(CXCursorSet cset,
- CXCursor cursor);
-
/**
* \brief Determine the semantic parent of the given cursor.
*