[Lldb-commits] [lldb] 7e02dc3 - [lldb] Fix -Wdocumentation warnings
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Tue Feb 4 16:44:46 PST 2020
Author: Jonas Devlieghere
Date: 2020-02-04T16:44:38-08:00
New Revision: 7e02dc3f2407eacf89c63763fa1f592be1a61dd3
URL: https://github.com/llvm/llvm-project/commit/7e02dc3f2407eacf89c63763fa1f592be1a61dd3
DIFF: https://github.com/llvm/llvm-project/commit/7e02dc3f2407eacf89c63763fa1f592be1a61dd3.diff
LOG: [lldb] Fix -Wdocumentation warnings
Added:
Modified:
lldb/include/lldb/Expression/DWARFExpression.h
lldb/source/Plugins/ExpressionParser/Clang/ClangASTSource.h
Removed:
################################################################################
diff --git a/lldb/include/lldb/Expression/DWARFExpression.h b/lldb/include/lldb/Expression/DWARFExpression.h
index bfae142d5e01..a3e3cb28fb85 100644
--- a/lldb/include/lldb/Expression/DWARFExpression.h
+++ b/lldb/include/lldb/Expression/DWARFExpression.h
@@ -233,11 +233,8 @@ class DWARFExpression {
/// \param[in] s
/// The stream to use for pretty-printing.
///
- /// \param[in] offset
- /// The offset into the data buffer of the opcodes to be printed.
- ///
- /// \param[in] length
- /// The length in bytes of the opcodes to be printed.
+ /// \param[in] data
+ /// The data extractor.
///
/// \param[in] level
/// The level of detail to use in pretty-printing.
diff --git a/lldb/source/Plugins/ExpressionParser/Clang/ClangASTSource.h b/lldb/source/Plugins/ExpressionParser/Clang/ClangASTSource.h
index fcdefd9b0a52..96a1f76e87de 100644
--- a/lldb/source/Plugins/ExpressionParser/Clang/ClangASTSource.h
+++ b/lldb/source/Plugins/ExpressionParser/Clang/ClangASTSource.h
@@ -346,12 +346,6 @@ class ClangASTSource : public clang::ExternalASTSource,
/// \param[in] decl
/// The Decl whose origin is to be found.
///
- /// \param[out] original_decl
- /// A pointer whose target is filled in with the original Decl.
- ///
- /// \param[in] original_ctx
- /// A pointer whose target is filled in with the original's ASTContext.
- ///
/// \return
/// True if lookup succeeded; false otherwise.
ClangASTImporter::DeclOrigin GetDeclOrigin(const clang::Decl *decl);
More information about the lldb-commits
mailing list