[Lldb-commits] [lldb] 8387237 - [lldb] improve Doxygen rendering of an existing comment (#177785)
via lldb-commits
lldb-commits at lists.llvm.org
Sat Jan 24 13:52:42 PST 2026
Author: Matej Košík
Date: 2026-01-24T13:52:38-08:00
New Revision: 8387237b4916279b1752b99cb848eeb84a04c0d2
URL: https://github.com/llvm/llvm-project/commit/8387237b4916279b1752b99cb848eeb84a04c0d2
DIFF: https://github.com/llvm/llvm-project/commit/8387237b4916279b1752b99cb848eeb84a04c0d2.diff
LOG: [lldb] improve Doxygen rendering of an existing comment (#177785)
This commit improves the way how the example code attached to
`SBDebugger::GetSetting` method is rendered by Doxygen.
Co-authored-by: Matej Košík <matej.kosik at codasip.com>
Added:
Modified:
lldb/include/lldb/API/SBDebugger.h
Removed:
################################################################################
diff --git a/lldb/include/lldb/API/SBDebugger.h b/lldb/include/lldb/API/SBDebugger.h
index 39980349065cf..688fc9197965c 100644
--- a/lldb/include/lldb/API/SBDebugger.h
+++ b/lldb/include/lldb/API/SBDebugger.h
@@ -190,11 +190,13 @@ class LLDB_API SBDebugger {
/// Client can specify empty string or null to get all settings.
///
/// Example usages:
+ /// \code
/// lldb::SBStructuredData settings = debugger.GetSetting();
/// lldb::SBStructuredData settings = debugger.GetSetting(nullptr);
/// lldb::SBStructuredData settings = debugger.GetSetting("");
/// lldb::SBStructuredData settings = debugger.GetSetting("target.arg0");
/// lldb::SBStructuredData settings = debugger.GetSetting("target");
+ /// \endcode
lldb::SBStructuredData GetSetting(const char *setting = nullptr);
/// Set whether the debugger should run in asynchronous mode.
More information about the lldb-commits
mailing list