summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2014-06-20 09:52:04 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2014-06-20 09:52:04 +0000
commitc3c8bb304c9bde743bc050c070518ea7d1616b57 (patch)
tree0763b219af6bcbf9a9d0644b549635b042c0cb0f
parent98a11d0048dc90a55b17398421988ee8be3480da (diff)
downloadclang-c3c8bb304c9bde743bc050c070518ea7d1616b57.tar.gz
clang-c3c8bb304c9bde743bc050c070518ea7d1616b57.tar.bz2
clang-c3c8bb304c9bde743bc050c070518ea7d1616b57.tar.xz
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
-rw-r--r--include/clang/AST/OpenMPClause.h14
1 files changed, 7 insertions, 7 deletions
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,