[Lldb-commits] [lldb] [lldb][telemetry] Implement LLDB Telemetry (part 1) (PR #119716)
Pavel Labath via lldb-commits
lldb-commits at lists.llvm.org
Thu Feb 6 08:06:45 PST 2025
================
@@ -257,8 +257,8 @@ enum StopReason {
};
/// Command Return Status Types.
-enum ReturnStatus {
- eReturnStatusInvalid,
+enum ReturnStatus : int {
+ eReturnStatusInvalid = 0,
----------------
labath wrote:
In that case, I'd suggest working around that locally (by casting the enum to an integer type?). It's kinda weird that this is the only enum which has an explicit type specifier.
https://github.com/llvm/llvm-project/pull/119716
More information about the lldb-commits
mailing list