[llvm] [NFC][IR] Wrap std::set into CfiFunctionIndex (PR #130361)
via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 7 14:49:02 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 21d973dbb335547848b77c01b106734942893693 67c2b4eab45b0cbe33e4c8c34cdd25b429131a06 --extensions h -- llvm/include/llvm/IR/ModuleSummaryIndex.h
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/include/llvm/IR/ModuleSummaryIndex.h b/llvm/include/llvm/IR/ModuleSummaryIndex.h
index ada6bb259d..539c130af3 100644
--- a/llvm/include/llvm/IR/ModuleSummaryIndex.h
+++ b/llvm/include/llvm/IR/ModuleSummaryIndex.h
@@ -1295,8 +1295,7 @@ class CfiFunctionIndex {
public:
CfiFunctionIndex() = default;
- template <typename It>
- CfiFunctionIndex(It B, It E) : Index(B, E) {}
+ template <typename It> CfiFunctionIndex(It B, It E) : Index(B, E) {}
std::set<std::string, std::less<>>::const_iterator begin() const {
return Index.begin();
``````````
</details>
https://github.com/llvm/llvm-project/pull/130361
More information about the llvm-commits
mailing list