================ @@ -56,13 +58,38 @@ struct LLDBBaseTelemetryInfo : public llvm::telemetry::TelemetryInfo { void serialize(llvm::telemetry::Serializer &serializer) const override; }; +/// Describes the exit status of a debugger. +struct ExitDescription { + int exit_code; + std::string description; +}; + +struct DebuggerInfo : public LLDBBaseTelemetryInfo { ---------------- labath wrote:
`DebuggerInfo::classof(subclass_of_debugger_info)` should return true, which I guess means changing the implementation to something like `return T->getKind()&LLDBEntryKind::DebuggerInfo == LLDBEntryKind::DebuggerInfo` https://github.com/llvm/llvm-project/pull/127696 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits