[Lldb-commits] [lldb] [lldb][telemetry] Implement LLDB Telemetry (part 1) (PR #119716)

Pavel Labath via lldb-commits lldb-commits at lists.llvm.org
Wed Feb 5 01:05:15 PST 2025


================
@@ -257,8 +257,8 @@ enum StopReason {
 };
 
 /// Command Return Status Types.
-enum ReturnStatus {
-  eReturnStatusInvalid,
+enum ReturnStatus : int {
+  eReturnStatusInvalid = 0,
----------------
labath wrote:

I'm not sure I understand that. What exactly happens if you leave this out?

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


More information about the lldb-commits mailing list