[Lldb-commits] [lldb] [lldb] Create a single Severity enum in lldb-enumerations (PR #90917)
Adrian Prantl via lldb-commits
lldb-commits at lists.llvm.org
Fri May 3 09:15:19 PDT 2024
================
@@ -1347,6 +1347,12 @@ enum DebuggerBroadcastBit {
eBroadcastBitProgressCategory = (1 << 3),
};
+enum Severity {
----------------
adrian-prantl wrote:
Would `enum class` prevent people from accidentally casting this to an unrelated enum with similar purpose but potentially different values?
https://github.com/llvm/llvm-project/pull/90917
More information about the lldb-commits
mailing list