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

Vy Nguyen via lldb-commits lldb-commits at lists.llvm.org
Thu Feb 6 12:25:56 PST 2025


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

done - removed the `:int` and `=0`

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


More information about the lldb-commits mailing list