[llvm] [nfc] Ignoring unused values (PR #125695)
via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 4 23:42:25 PST 2025
================
@@ -54,13 +54,13 @@ inline stable_hash stable_hash_combine(stable_hash A, stable_hash B,
// maintain closeness to the original name across different builds.
inline StringRef get_stable_name(StringRef Name) {
// Return the part after ".content." that represents contents.
- auto [P0, S0] = Name.rsplit(".content.");
+ auto [std::ignore, S0] = Name.rsplit(".content.");
----------------
natanelh-mobileye wrote:
done. I also added the explicit type because why not.
https://github.com/llvm/llvm-project/pull/125695
More information about the llvm-commits
mailing list