[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
Wed Aug 14 15:18:55 PDT 2024
================
@@ -25,6 +26,7 @@ namespace lldb_private {
using StatsClock = std::chrono::high_resolution_clock;
using StatsTimepoint = std::chrono::time_point<StatsClock>;
+using Duration = std::chrono::duration<double>;
----------------
Michael137 wrote:
If it's unused in this PR, I'd rather remove it here. And add it when you have the need for it
https://github.com/llvm/llvm-project/pull/102708
More information about the lldb-commits
mailing list