[Lldb-commits] [lldb] [lldb][progress][NFC] Fix Doxygen information (PR #83502)

Chelsea Cassanova via lldb-commits lldb-commits at lists.llvm.org
Thu Feb 29 15:19:07 PST 2024


https://github.com/chelcassanova created https://github.com/llvm/llvm-project/pull/83502

The `details` field in the constructor for `Progress` is missing Doxygen documentation, this commit adds this.

>From 7b26213416e45853514e98d5043255ccd42153a9 Mon Sep 17 00:00:00 2001
From: Chelsea Cassanova <chelsea_cassanova at apple.com>
Date: Thu, 29 Feb 2024 15:15:27 -0800
Subject: [PATCH] [lldb][progress][NFC] Fix Doxygen information

The `details` field in the constructor for `Progress` is missing Doxygen
documentation, this commit adds this.
---
 lldb/include/lldb/Core/Progress.h | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/lldb/include/lldb/Core/Progress.h b/lldb/include/lldb/Core/Progress.h
index eb4d9f9d7af08e..9549e3b5aea950 100644
--- a/lldb/include/lldb/Core/Progress.h
+++ b/lldb/include/lldb/Core/Progress.h
@@ -64,6 +64,9 @@ class Progress {
   ///
   /// @param [in] title The title of this progress activity.
   ///
+  /// @param [in] details Specific information about what the progress report
+  /// is currently working on.
+  ///
   /// @param [in] total The total units of work to be done if specified, if
   /// set to std::nullopt then an indeterminate progress indicator should be
   /// displayed.



More information about the lldb-commits mailing list