[clang] 49193e1 - Fix Wdocumentation unknown param warnings. NFC.
Simon Pilgrim via cfe-commits
cfe-commits at lists.llvm.org
Tue Aug 11 04:52:56 PDT 2020
Author: Simon Pilgrim
Date: 2020-08-11T12:52:37+01:00
New Revision: 49193e1fe7e143555d3b740610d6d1d20a553b2f
URL: https://github.com/llvm/llvm-project/commit/49193e1fe7e143555d3b740610d6d1d20a553b2f
DIFF: https://github.com/llvm/llvm-project/commit/49193e1fe7e143555d3b740610d6d1d20a553b2f.diff
LOG: Fix Wdocumentation unknown param warnings. NFC.
Added:
Modified:
clang/include/clang/AST/StmtOpenMP.h
Removed:
################################################################################
diff --git a/clang/include/clang/AST/StmtOpenMP.h b/clang/include/clang/AST/StmtOpenMP.h
index 0bb91a4ec9ec..b7bbf15949a0 100644
--- a/clang/include/clang/AST/StmtOpenMP.h
+++ b/clang/include/clang/AST/StmtOpenMP.h
@@ -3009,7 +3009,6 @@ class OMPCancellationPointDirective : public OMPExecutableDirective {
///
/// \param StartLoc Starting location of the directive kind.
/// \param EndLoc Ending location of the directive.
- /// \param Data Data storage, containing info about associated clauses,
/// statements and child expressions.
///
OMPCancellationPointDirective(SourceLocation StartLoc, SourceLocation EndLoc)
@@ -3018,9 +3017,6 @@ class OMPCancellationPointDirective : public OMPExecutableDirective {
EndLoc) {}
/// Build an empty directive.
- /// \param Data Data storage, containing info about associated clauses,
- /// statements and child expressions.
- ///
explicit OMPCancellationPointDirective()
: OMPExecutableDirective(OMPCancellationPointDirectiveClass,
llvm::omp::OMPD_cancellation_point,
More information about the cfe-commits
mailing list