[clang] ed95129 - Fix Wdocumentation unknown parameter warning. NFCI.
Simon Pilgrim via cfe-commits
cfe-commits at lists.llvm.org
Fri Mar 5 08:09:23 PST 2021
Author: Simon Pilgrim
Date: 2021-03-05T15:58:20Z
New Revision: ed951293affca9abd92c886432115f35065cad3c
URL: https://github.com/llvm/llvm-project/commit/ed951293affca9abd92c886432115f35065cad3c
DIFF: https://github.com/llvm/llvm-project/commit/ed951293affca9abd92c886432115f35065cad3c.diff
LOG: Fix Wdocumentation unknown parameter warning. NFCI.
Added:
Modified:
clang/lib/Sema/SemaOpenMP.cpp
Removed:
################################################################################
diff --git a/clang/lib/Sema/SemaOpenMP.cpp b/clang/lib/Sema/SemaOpenMP.cpp
index 6fcb472cd60cc..8f7cf57fb9112 100644
--- a/clang/lib/Sema/SemaOpenMP.cpp
+++ b/clang/lib/Sema/SemaOpenMP.cpp
@@ -5187,7 +5187,7 @@ static VarDecl *precomputeExpr(Sema &Actions,
/// \param Rel Comparison operator of the loop condition.
/// \param StartExpr Value of the loop counter at the first iteration.
/// \param StopExpr Expression the loop counter is compared against in the loop
-/// condition. \param Step Amount of increment after each iteration.
+/// condition. \param StepExpr Amount of increment after each iteration.
///
/// \return Closure (CapturedStmt) of the distance calculation.
static CapturedStmt *buildDistanceFunc(Sema &Actions, QualType LogicalTy,
More information about the cfe-commits
mailing list