r186664 - StmtOpenMP.h: Fix bogus \param(s). [-Wdocumentation]
NAKAMURA Takumi
geek4civic at gmail.com
Fri Jul 19 03:30:59 PDT 2013
Author: chapuni
Date: Fri Jul 19 05:30:58 2013
New Revision: 186664
URL: http://llvm.org/viewvc/llvm-project?rev=186664&view=rev
Log:
StmtOpenMP.h: Fix bogus \param(s). [-Wdocumentation]
Modified:
cfe/trunk/include/clang/AST/StmtOpenMP.h
Modified: cfe/trunk/include/clang/AST/StmtOpenMP.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/StmtOpenMP.h?rev=186664&r1=186663&r2=186664&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/StmtOpenMP.h (original)
+++ cfe/trunk/include/clang/AST/StmtOpenMP.h Fri Jul 19 05:30:58 2013
@@ -273,8 +273,8 @@ protected:
///
/// \param SC Statement class.
/// \param K Kind of OpenMP directive.
- /// \brief StartLoc Starting location of the directive (directive keyword).
- /// \param EndLocL Ending location of the directive.
+ /// \param StartLoc Starting location of the directive (directive keyword).
+ /// \param EndLoc Ending location of the directive.
/// \param Clauses A list of clauses.
///
template <typename T>
@@ -363,7 +363,7 @@ public:
class OMPParallelDirective : public OMPExecutableDirective {
/// \brief Build directive with the given start and end location.
///
- /// \brief StartLoc Starting location of the directive (directive keyword).
+ /// \param StartLoc Starting location of the directive (directive keyword).
/// \param EndLoc Ending Location of the directive.
///
OMPParallelDirective(SourceLocation StartLoc, SourceLocation EndLoc,
More information about the cfe-commits
mailing list