[Lldb-commits] [lldb] [lldb] Fix indentation when printing stop hooks (PR #165945)

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Sat Nov 1 09:55:28 PDT 2025


================
@@ -315,6 +321,20 @@ class Stream {
   /// Increment the current indentation level.
   void IndentMore(unsigned amount = 2);
 
+  class IndentScope {
----------------
JDevlieghere wrote:

Nit: We usually do public -> protected -> private so this looks slightly out of place. I'd move it to the bottom (and maybe make it a struct if you want to avoid the extra visibility keyword). 

https://github.com/llvm/llvm-project/pull/165945


More information about the lldb-commits mailing list