[Lldb-commits] [lldb] f9f279d - [lldb] Fix variable name mismatch between signature and docs (NFC)
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Thu Jun 22 13:51:02 PDT 2023
Author: Jonas Devlieghere
Date: 2023-06-22T13:50:54-07:00
New Revision: f9f279dc64ac8366fc9095a30d4e0e33827d6bc1
URL: https://github.com/llvm/llvm-project/commit/f9f279dc64ac8366fc9095a30d4e0e33827d6bc1
DIFF: https://github.com/llvm/llvm-project/commit/f9f279dc64ac8366fc9095a30d4e0e33827d6bc1.diff
LOG: [lldb] Fix variable name mismatch between signature and docs (NFC)
The variable is named `bundle_dir` but the documentation referenced
`directory` which generated a warning.
Added:
Modified:
lldb/include/lldb/API/SBTrace.h
Removed:
################################################################################
diff --git a/lldb/include/lldb/API/SBTrace.h b/lldb/include/lldb/API/SBTrace.h
index f0c85eac0226d..ab8338b3f4242 100644
--- a/lldb/include/lldb/API/SBTrace.h
+++ b/lldb/include/lldb/API/SBTrace.h
@@ -48,7 +48,7 @@ class LLDB_API SBTrace {
/// \param[out] error
/// This will be set with an error in case of failures.
///
- /// \param[in] directory
+ /// \param[in] bundle_dir
/// The directory where the trace files will be saved.
///
/// \param[in] compact
More information about the lldb-commits
mailing list