[Lldb-commits] [lldb] Add new API in SBTarget for loading core from SBFile (PR #71769)

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Wed Nov 8 21:18:25 PST 2023


================
@@ -354,12 +355,10 @@ class Process : public std::enable_shared_from_this<Process>,
   };
   // This is all the event bits the public process broadcaster broadcasts.
   // The process shadow listener signs up for all these bits...
-  static constexpr int g_all_event_bits = eBroadcastBitStateChanged 
-                                        | eBroadcastBitInterrupt
-                                        | eBroadcastBitSTDOUT 
-                                        | eBroadcastBitSTDERR
-                                        | eBroadcastBitProfileData 
-                                        | eBroadcastBitStructuredData;
+  static constexpr int g_all_event_bits =
+      eBroadcastBitStateChanged | eBroadcastBitInterrupt | eBroadcastBitSTDOUT |
+      eBroadcastBitSTDERR | eBroadcastBitProfileData |
+      eBroadcastBitStructuredData;
----------------
JDevlieghere wrote:

Unrelated formatting change? 

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


More information about the lldb-commits mailing list