r253932 - clang-c/Index.h: Move \brief. [-Wdocumentation]

NAKAMURA Takumi via cfe-commits cfe-commits at lists.llvm.org
Mon Nov 23 14:51:27 PST 2015


Author: chapuni
Date: Mon Nov 23 16:51:26 2015
New Revision: 253932

URL: http://llvm.org/viewvc/llvm-project?rev=253932&view=rev
Log:
clang-c/Index.h: Move \brief. [-Wdocumentation]

Modified:
    cfe/trunk/include/clang-c/Index.h

Modified: cfe/trunk/include/clang-c/Index.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang-c/Index.h?rev=253932&r1=253931&r2=253932&view=diff
==============================================================================
--- cfe/trunk/include/clang-c/Index.h (original)
+++ cfe/trunk/include/clang-c/Index.h Mon Nov 23 16:51:26 2015
@@ -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);
 
 /**




More information about the cfe-commits mailing list