[Lldb-commits] [lldb] [lldb][Commands] Show symbol change bit in SB API (PR #66144)
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Wed Sep 13 12:45:54 PDT 2023
================
@@ -83,7 +83,7 @@ class Debugger : public std::enable_shared_from_this<Debugger>,
eBroadcastBitProgress = (1 << 0),
eBroadcastBitWarning = (1 << 1),
eBroadcastBitError = (1 << 2),
- eBroadcastSymbolChange = (1 << 3),
+ eBroadcastBitSymbolChange = (1 << 3),
----------------
JDevlieghere wrote:
Yes, that's what Greg's suggesting 👍
PS: Probably just a typo, but it should be `eBroadcastBitSymbolFileChanged` (instead of `Files`).
https://github.com/llvm/llvm-project/pull/66144
More information about the lldb-commits
mailing list