r211348 - OMPScheduleClause::OMPScheduleClause(): Fix possible typos, s/\brief/\param/g. [-Wdocumentation]

NAKAMURA Takumi geek4civic at gmail.com
Fri Jun 20 02:52:05 PDT 2014


Author: chapuni
Date: Fri Jun 20 04:52:04 2014
New Revision: 211348

URL: http://llvm.org/viewvc/llvm-project?rev=211348&view=rev
Log:
OMPScheduleClause::OMPScheduleClause(): Fix possible typos, s/\brief/\param/g. [-Wdocumentation]

Modified:
    cfe/trunk/include/clang/AST/OpenMPClause.h

Modified: cfe/trunk/include/clang/AST/OpenMPClause.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/OpenMPClause.h?rev=211348&r1=211347&r2=211348&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/OpenMPClause.h (original)
+++ cfe/trunk/include/clang/AST/OpenMPClause.h Fri Jun 20 04:52:04 2014
@@ -553,13 +553,13 @@ public:
   /// \brief Build 'schedule' clause with schedule kind \a Kind and chunk size
   /// expression \a ChunkSize.
   ///
-  /// \brief StartLoc Starting location of the clause.
-  /// \brief LParenLoc Location of '('.
-  /// \brief KLoc Starting location of the argument.
-  /// \brief CommaLoc Location of ','.
-  /// \brief EndLoc Ending location of the clause.
-  /// \brief Kind Schedule kind.
-  /// \brief ChunkSize Chunk size.
+  /// \param StartLoc Starting location of the clause.
+  /// \param LParenLoc Location of '('.
+  /// \param KLoc Starting location of the argument.
+  /// \param CommaLoc Location of ','.
+  /// \param EndLoc Ending location of the clause.
+  /// \param Kind Schedule kind.
+  /// \param ChunkSize Chunk size.
   ///
   OMPScheduleClause(SourceLocation StartLoc, SourceLocation LParenLoc,
                     SourceLocation KLoc, SourceLocation CommaLoc,





More information about the cfe-commits mailing list