[Lldb-commits] [lldb] [LLDB][Telemetry]Define DebuggerTelemetryInfo and related methods (PR #127696)
Pavel Labath via lldb-commits
lldb-commits at lists.llvm.org
Fri Feb 28 03:54:04 PST 2025
================
@@ -18,25 +18,35 @@
namespace lldb_private {
-struct FakeTelemetryInfo : public llvm::telemetry::TelemetryInfo {
+struct FakeTelemetryInfo : public telemetry::LLDBBaseTelemetryInfo {
std::string msg;
+ int num;
+
+ ::llvm::telemetry::KindType getKind() const override { return 0b11111; }
};
class TestDestination : public llvm::telemetry::Destination {
public:
- TestDestination(std::vector<const llvm::telemetry::TelemetryInfo *> *entries)
+ TestDestination(std::vector<llvm::telemetry::TelemetryInfo *> *entries)
----------------
labath wrote:
```suggestion
explicit TestDestination(std::vector<std::unique_ptr<llvm::telemetry::TelemetryInfo>> &entries)
```
https://github.com/llvm/llvm-project/pull/127696
More information about the lldb-commits
mailing list