================ @@ -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:
`classof` is implemented as if this class was final ```suggestion struct DebuggerInfo final: public LLDBBaseTelemetryInfo { ``` If you don't want that, you should change the implementation to accept subclasses 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