summaryrefslogtreecommitdiffstats
path: root/include/clang-c
diff options
context:
space:
mode:
authorEhsan Akhgari <ehsan.akhgari@gmail.com>2016-05-31 15:39:10 +0000
committerEhsan Akhgari <ehsan.akhgari@gmail.com>2016-05-31 15:39:10 +0000
commitdafa8b914283a5d23890d4f76052dbef717e47e8 (patch)
treed54ba64ec56f0e2e3ea2a15b0953d56df110d96a /include/clang-c
parent8338c0deafecd70c68d85881ac90d77e994c9b03 (diff)
Revert r253909 because it was committed with an incorrect message
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@271291 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang-c')
-rw-r--r--include/clang-c/Index.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/include/clang-c/Index.h b/include/clang-c/Index.h
index dbcd0c8840..790effea1d 100644
--- a/include/clang-c/Index.h
+++ b/include/clang-c/Index.h
@@ -2516,32 +2516,6 @@ enum CXLinkageKind {
*/
CINDEX_LINKAGE enum CXLinkageKind clang_getCursorLinkage(CXCursor cursor);
-enum CXVisibilityKind {
- /** \brief This value indicates that no visibility information is available
- * for a provided CXCursor. */
- CXVisibility_Invalid,
-
- /** \brief Symbol not seen by the linker. */
- CXVisibility_Hidden,
- /** \brief Symbol seen by the linker but resolves to a symbol inside this object. */
- CXVisibility_Protected,
- /** \brief Symbol seen by the linker and acts like a normal symbol. */
- CXVisibility_Default
-};
-
-/**
- * \brief Describe the visibility of the entity referred to by a cursor.
- *
- * This returns the default visibility if not explicitly specified by
- * a visibility attribute. The default visibility may be changed by
- * commandline arguments.
- *
- * \param cursor The cursor to query.
- *
- * \returns The visibility of the cursor.
- */
-CINDEX_LINKAGE enum CXVisibilityKind clang_getCursorVisibility(CXCursor cursor);
-
/**
* \brief Determine the availability of the entity that this cursor refers to,
* taking the current target platform into account.