From: NAKAMURA Takumi Date: Fri, 20 Jun 2014 09:52:04 +0000 (+0000) Subject: OMPScheduleClause::OMPScheduleClause(): Fix possible typos, s/\brief/\param/g. [... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c3c8bb304c9bde743bc050c070518ea7d1616b57;p=clang OMPScheduleClause::OMPScheduleClause(): Fix possible typos, s/\brief/\param/g. [-Wdocumentation] git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@211348 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/AST/OpenMPClause.h b/include/clang/AST/OpenMPClause.h index a46c44a6ea..59c0e2b409 100644 --- a/include/clang/AST/OpenMPClause.h +++ b/include/clang/AST/OpenMPClause.h @@ -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,