[Lldb-commits] [lldb] [LLDB][Telemetry]Define DebuggerTelemetryInfo and related methods (PR #127696)
Vy Nguyen via lldb-commits
lldb-commits at lists.llvm.org
Thu Feb 27 07:20:38 PST 2025
================
@@ -21,14 +22,17 @@
#include <ctime>
#include <memory>
#include <optional>
+#include <stack>
#include <string>
-#include <unordered_map>
namespace lldb_private {
namespace telemetry {
struct LLDBEntryKind : public ::llvm::telemetry::EntryKind {
static const llvm::telemetry::KindType BaseInfo = 0b11000;
+ static const llvm::telemetry::KindType DebuggerInfo = 0b11001;
+ // There are other entries in between (added in separate PRs)
+ static const llvm::telemetry::KindType MiscInfo = 0b11110;
----------------
oontvoo wrote:
yes - no longer needed in this patch
https://github.com/llvm/llvm-project/pull/127696
More information about the lldb-commits
mailing list