Skip to content

Commit b0a7237

Browse files
committed
[lldb][sbapi] Fix API break in SBDebugger broadcast bits
#87409 removed the broadcast bits from SBDebugger and placed them in `lldb-enumerations.h`. This is API-breaking so this commits places the enum back into `SBDebugger.h` and references the bits from `lldb-enumerations.h`.
1 parent 5fb59e7 commit b0a7237

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

lldb/include/lldb/API/SBDebugger.h

+7
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,13 @@ class LLDB_API SBInputReader {
4242

4343
class LLDB_API SBDebugger {
4444
public:
45+
FLAGS_ANONYMOUS_ENUM(){
46+
eBroadcastBitProgress = lldb::DebuggerBroadcastBit::eBroadcastBitProgress,
47+
eBroadcastBitWarning = lldb::DebuggerBroadcastBit::eBroadcastBitWarning,
48+
eBroadcastBitError = lldb::DebuggerBroadcastBit::eBroadcastBitError,
49+
eBroadcastBitProgressCategory =
50+
lldb::DebuggerBroadcastBit::eBroadcastBitProgressCategory,
51+
};
4552
SBDebugger();
4653

4754
SBDebugger(const lldb::SBDebugger &rhs);

0 commit comments

Comments
 (0)