llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT--> @llvm/pr-subscribers-lldb Author: Matej Košík (sedymrak) <details> <summary>Changes</summary> This commit improves the way how the example code attached to `SBDebugger::GetSetting` method is rendered by Doxygen. --- Full diff: https://github.com/llvm/llvm-project/pull/177785.diff 1 Files Affected: - (modified) lldb/include/lldb/API/SBDebugger.h (+2) ``````````diff 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. `````````` </details> https://github.com/llvm/llvm-project/pull/177785 _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
