]> granicus.if.org Git - clang/commitdiff
StmtOpenMP.h: Fix bogus \param(s). [-Wdocumentation]
authorNAKAMURA Takumi <geek4civic@gmail.com>
Fri, 19 Jul 2013 10:30:58 +0000 (10:30 +0000)
committerNAKAMURA Takumi <geek4civic@gmail.com>
Fri, 19 Jul 2013 10:30:58 +0000 (10:30 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@186664 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/AST/StmtOpenMP.h

index 34f582dadcff34dd6a06ac202bc0d641e4d9feef..2da17b8df4ad68595532afbb9514a0b610ff9729 100644 (file)
@@ -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,