[Lldb-commits] [lldb] 4e4c6d7 - [lldb/Format] Make progress count show thousands separators (NFC) (#137446)

via lldb-commits lldb-commits at lists.llvm.org
Mon Apr 28 10:26:44 PDT 2025


Author: Med Ismail Bennani
Date: 2025-04-28T10:26:40-07:00
New Revision: 4e4c6d7e273a91d230389b98c280c9dbde0f6c32

URL: https://github.com/llvm/llvm-project/commit/4e4c6d7e273a91d230389b98c280c9dbde0f6c32
DIFF: https://github.com/llvm/llvm-project/commit/4e4c6d7e273a91d230389b98c280c9dbde0f6c32.diff

LOG: [lldb/Format] Make progress count show thousands separators (NFC) (#137446)

This patch changes the progress count formatting show thousands
separator making it easier to read big numbers.

Signed-off-by: Med Ismail Bennani <ismail at bennani.ma>

Added: 
    

Modified: 
    lldb/source/Core/FormatEntity.cpp

Removed: 
    


################################################################################
diff  --git a/lldb/source/Core/FormatEntity.cpp b/lldb/source/Core/FormatEntity.cpp
index 4ac50e2d30f3c..a2410048e5a89 100644
--- a/lldb/source/Core/FormatEntity.cpp
+++ b/lldb/source/Core/FormatEntity.cpp
@@ -1960,7 +1960,7 @@ bool FormatEntity::Format(const Entry &entry, Stream &s,
     if (Target *target = Target::GetTargetFromContexts(exe_ctx, sc)) {
       if (auto progress = target->GetDebugger().GetCurrentProgressReport()) {
         if (progress->total != UINT64_MAX) {
-          s.Format("[{0}/{1}]", progress->completed, progress->total);
+          s.Format("[{0:N}/{1:N}]", progress->completed, progress->total);
           return true;
         }
       }


        


More information about the lldb-commits mailing list