[Lldb-commits] [lldb] Add commands to list/enable/disable plugins (PR #134418)
Greg Clayton via lldb-commits
lldb-commits at lists.llvm.org
Thu May 29 15:00:47 PDT 2025
================
@@ -174,12 +174,21 @@ struct StatisticsOptions {
return !GetSummaryOnly();
}
+ void SetIncludePlugins(bool value) { m_include_plugins = value; }
+ bool GetIncludePlugins() const {
+ if (m_include_plugins.has_value())
+ return m_include_plugins.value();
+ // Default to true in both default mode and summary mode.
----------------
clayborg wrote:
yes IMHO
https://github.com/llvm/llvm-project/pull/134418
More information about the lldb-commits
mailing list