From: NAKAMURA Takumi Date: Mon, 23 Nov 2015 22:51:26 +0000 (+0000) Subject: clang-c/Index.h: Move \brief. [-Wdocumentation] X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c3a196b7398a8dc3bb832daccf87ed5c261427a3;p=clang clang-c/Index.h: Move \brief. [-Wdocumentation] git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@253932 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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); /**