Author: Michael Buch Date: 2025-11-06T16:27:22Z New Revision: bda72894bb5ddc766cda0a4eda376a4a262c3845
URL: https://github.com/llvm/llvm-project/commit/bda72894bb5ddc766cda0a4eda376a4a262c3845 DIFF: https://github.com/llvm/llvm-project/commit/bda72894bb5ddc766cda0a4eda376a4a262c3845.diff LOG: [lldb][docs][NFC] Fix ClangModulesDeclVendor::AddModule parameter docs Added: Modified: lldb/source/Plugins/ExpressionParser/Clang/ClangModulesDeclVendor.h Removed: ################################################################################ diff --git a/lldb/source/Plugins/ExpressionParser/Clang/ClangModulesDeclVendor.h b/lldb/source/Plugins/ExpressionParser/Clang/ClangModulesDeclVendor.h index ad4d060319e31..debf4761175b8 100644 --- a/lldb/source/Plugins/ExpressionParser/Clang/ClangModulesDeclVendor.h +++ b/lldb/source/Plugins/ExpressionParser/Clang/ClangModulesDeclVendor.h @@ -41,11 +41,11 @@ class ClangModulesDeclVendor : public DeclVendor { /// The path to the exact module to be loaded. E.g., if the desired /// module is std.io, then this should be { "std", "io" }. /// - /// \param[in] exported_modules + /// \param[out] exported_modules /// If non-NULL, a pointer to a vector to populate with the ID of every /// module that is re-exported by the specified module. /// - /// \param[in] error_stream + /// \param[out] error_stream /// A stream to populate with the output of the Clang parser when /// it tries to load the module. /// @@ -63,11 +63,11 @@ class ClangModulesDeclVendor : public DeclVendor { /// \param[in] cu /// The compilation unit to scan for imported modules. /// - /// \param[in] exported_modules + /// \param[out] exported_modules /// A vector to populate with the ID of each module loaded (directly /// and via re-exports) in this way. /// - /// \param[in] error_stream + /// \param[out] error_stream /// A stream to populate with the output of the Clang parser when /// it tries to load the modules. /// _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
