[Lldb-commits] [lldb] [LLDB][Data Formatters] Calculate average and total time for summary providers within lldb (PR #102708)
Michael Buch via lldb-commits
lldb-commits at lists.llvm.org
Mon Aug 12 08:25:52 PDT 2024
================
@@ -174,6 +176,83 @@ struct StatisticsOptions {
std::optional<bool> m_include_transcript;
};
+/// A class that represents statistics about a TypeSummaryProviders invocations
+class SummaryStatistics {
+public:
+ SummaryStatistics() = default;
+ SummaryStatistics(lldb_private::ConstString name) :
----------------
Michael137 wrote:
```suggestion
explicit SummaryStatistics(lldb_private::ConstString name) :
```
https://github.com/llvm/llvm-project/pull/102708
More information about the lldb-commits
mailing list