[Lldb-commits] [lldb] [lldb][sbdebugger] Match progress category enum bit in Debugger.h (PR #87409)

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Wed Apr 10 09:30:48 PDT 2024


================
@@ -42,11 +42,13 @@ class LLDB_API SBInputReader {
 
 class LLDB_API SBDebugger {
 public:
+  // The enum values here need to match their corresponding values in
+  // Debugger.h.
   FLAGS_ANONYMOUS_ENUM(){
       eBroadcastBitProgress = (1 << 0),
       eBroadcastBitWarning = (1 << 1),
       eBroadcastBitError = (1 << 2),
-      eBroadcastBitProgressCategory = (1 << 3),
+      eBroadcastBitProgressCategory = (1 << 4),
----------------
JDevlieghere wrote:

This one can go now, right?

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


More information about the lldb-commits mailing list