[clang] f7bc9db - Fix Wdocumentation missing parameter warnings. NFCI.
Simon Pilgrim via cfe-commits
cfe-commits at lists.llvm.org
Fri Jun 11 06:34:45 PDT 2021
Author: Simon Pilgrim
Date: 2021-06-11T14:32:35+01:00
New Revision: f7bc9db95aba77157f10b627a4dea32c3174e148
URL: https://github.com/llvm/llvm-project/commit/f7bc9db95aba77157f10b627a4dea32c3174e148
DIFF: https://github.com/llvm/llvm-project/commit/f7bc9db95aba77157f10b627a4dea32c3174e148.diff
LOG: Fix Wdocumentation missing parameter warnings. NFCI.
Added:
Modified:
clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporterVisitors.h
Removed:
################################################################################
diff --git a/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporterVisitors.h b/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporterVisitors.h
index 17a8e7859a54..047b2072bbcd 100644
--- a/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporterVisitors.h
+++ b/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporterVisitors.h
@@ -317,8 +317,7 @@ class StoreHandler {
/// Handle the given store and produce the node.
///
- /// \param E The expression value which we are tracking
- /// \param N A node where the evaluation of \c E actually happens.
+ /// \param SI The information fully describing the store.
/// \param Opts Tracking options specifying how we are tracking the value.
///
/// \return the produced note, null if the handler doesn't support this kind
@@ -346,8 +345,7 @@ class TrackingBugReporterVisitor : public BugReporterVisitor {
/// \param N A node "downstream" from the evaluation of the statement.
/// \param E The expression value which we are tracking
/// \param R The bug report to which visitors should be attached.
-/// \param EnableNullFPSuppression Whether we should employ false positive
-/// suppression (inlined defensive checks, returned null).
+/// \param Opts Tracking options specifying how we are tracking the value.
///
/// \return Whether or not the function was able to add visitors for this
/// statement. Note that returning \c true does not actually imply
More information about the cfe-commits
mailing list