[Lldb-commits] [lldb] [LLDB][Telemetry]Define TargetInfo for collecting data about a target (PR #127834)
via lldb-commits
lldb-commits at lists.llvm.org
Wed Feb 19 09:52:59 PST 2025
github-actions[bot] wrote:
<!--LLVM CODE FORMAT COMMENT: {clang-format}-->
:warning: C/C++ code formatter, clang-format found issues in your code. :warning:
<details>
<summary>
You can test this locally with the following command:
</summary>
``````````bash
git-clang-format --diff 5ecce45ea2980aff35d1283d4dd3feb8f74de16c 0d6a36d84df50ccb9eef9ef3dd6f59d4299edeac --extensions h,cpp -- lldb/include/lldb/Core/Telemetry.h lldb/source/Core/Telemetry.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/lldb/include/lldb/Core/Telemetry.h b/lldb/include/lldb/Core/Telemetry.h
index 4be8195125..9e24bbfa58 100644
--- a/lldb/include/lldb/Core/Telemetry.h
+++ b/lldb/include/lldb/Core/Telemetry.h
@@ -138,10 +138,10 @@ public:
const llvm::telemetry::Config *getConfig();
- virtual void AtMainExecutableLoadStart(TargetInfo * entry);
+ virtual void AtMainExecutableLoadStart(TargetInfo *entry);
virtual void AtMainExecutableLoadEnd(TargetInfo *entry);
- virtual llvm::StringRef GetInstanceName() const = 0;
+ virtual llvm::StringRef GetInstanceName() const = 0;
static TelemetryManager *getInstance();
protected:
``````````
</details>
https://github.com/llvm/llvm-project/pull/127834
More information about the lldb-commits
mailing list