[Lldb-commits] [lldb] [LLDB] Add type casting to DIL, part 1 of 3. (PR #165199)

Michael Buch via lldb-commits lldb-commits at lists.llvm.org
Wed Oct 29 04:37:02 PDT 2025


================
@@ -35,6 +36,14 @@ enum class UnaryOpKind {
   Deref,  // "*"
 };
 
+/// The C-Style casts allowed by DIL.
+enum class CStyleCastKind {
+  eEnumeration,
+  eNullptr,
+  eReference,
+  eNone,
----------------
Michael137 wrote:

Can we add a brief oxygen comment to each of these enumerators?

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


More information about the lldb-commits mailing list