summaryrefslogtreecommitdiffstats
path: root/include/clang-c
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2015-11-23 22:51:26 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2015-11-23 22:51:26 +0000
commitc3a196b7398a8dc3bb832daccf87ed5c261427a3 (patch)
tree1fd02ee464494731b1bcfc4c7af0eb4c87b7400b /include/clang-c
parent0cb5f3abb0de5d03e98e87256a3f369ad2a0e205 (diff)
clang-c/Index.h: Move \brief. [-Wdocumentation]
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@253932 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang-c')
-rw-r--r--include/clang-c/Index.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/include/clang-c/Index.h b/include/clang-c/Index.h
index e0c623e883..d181dab8c3 100644
--- a/include/clang-c/Index.h
+++ b/include/clang-c/Index.h
@@ -2460,17 +2460,6 @@ enum CXLinkageKind {
*/
CINDEX_LINKAGE enum CXLinkageKind clang_getCursorLinkage(CXCursor cursor);
-/**
- * \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.
- */
enum CXVisibilityKind {
/** \brief This value indicates that no visibility information is available
* for a provided CXCursor. */
@@ -2484,6 +2473,17 @@ enum CXVisibilityKind {
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);
/**