<table border="1" cellspacing="0" cellpadding="8">
<tr>
<th>Issue</th>
<td>
<a href=https://github.com/llvm/llvm-project/issues/104572>104572</a>
</td>
</tr>
<tr>
<th>Summary</th>
<td>
detect mismatching argument in predicate
</td>
</tr>
<tr>
<th>Labels</th>
<td>
clang-tidy,
check-request
</td>
</tr>
<tr>
<th>Assignees</th>
<td>
</td>
</tr>
<tr>
<th>Reporter</th>
<td>
firewave
</td>
</tr>
</table>
<pre>
```cpp
#include <algorithm>
#include <map>
#include <string>
void f()
{
const std::map<int, std::string> m;
auto it = std::find_if(m.cbegin(), m.cend(), [&](const std::pair<int, std::string>& p){
return p.second.empty();
});
(void)it;
}
```
https://godbolt.org/z/T5jPWov98
The used type in the predicate argument is wrong. It needs to be `std::pair<const int, std::string>`. Depending on the data being stored this might lead to it being copied on each invocation.
This could be fixed by using `decltype(m.cbegin())::value_type` or (starting with C++14) `auto`. But I do not think the latter should be suggested by this check. That should be suggested by `modernize-use-auto` instead so the logic stays in a single place (see #104569).
This should probably be reported if the given argument is a const reference and the type does not match `decltype(<first>)::value_type`. Specifying it by-value is allowed starting with C++11 if "for VT a move is equivalent to a copy" according to https://en.cppreference.com/w/cpp/algorithm/find.
</pre>
<img width="1px" height="1px" alt="" src="http://email.email.llvm.org/o/eJx8Vd9v4rgT_2vMy4goTCDAQx5a-CLt21e66u5x5diTxLuOnbUn9Ni__mRDS9trDyFixvbM58fYkTGa3hE1YvMoNseFnHnwoelMoGd5pkXr9aURdXn9qmkS5VGUDwIr45SdNYGoDtL2PhgeRlH977P5UU5fzEQOxvX3yfx79kZDJ3AncH-Lbx-vA1DeRYbIWlQPonrImQ_GscDDPfqaFUZRvewEgPtIzuzBMIjqeN_WGae_m1R4LFRLvXE3DHiAsVDk9P1_kgtrsTkK3H3ANEkT_guUwBqmlGb7Blr6BOI5OJiKSMo7XdA48eVW8h2N7fFdSOAuSSZwb_g1mhZdBy_mvZV4YJ5iwoUngafe69ZbLnzoBZ5-Czw9bX78_y9_3u_ebnoaCOZIGvgyERgHPBBMgbRRkglk6OeRHIOJ8By86wv4xuCIdAT20BKIuvyo0lW7r7WqywKONJHTxvXgrzW1ZAktpUhkHxKiwUQYTT8wWJIaru5elyg_GdJpL0k1gHFnryQb74r35EwE5WerE9LO_E0a2gvMMaUQdalJ2cT7k-7YX0GfpZ3pe15Tl-BD8iWyDJwyPBse4CDwUeDjai1wn3KmLswMH2eGb6A9OM-Ji_uZeVrJTAHi8AIrzn1Pka_QMmc1kPpZwNMg-at1oi5Hryk485uWc6TlrSwYFzmJFf21mu-NgsjyEpO5EhJ1SzBZqSiTofSoVuV6Uyfa_9bvhmAKvpWtvSQogSYfEhLT5Sq9OZN71yvydqgDdRTIKQLpdF6b-0x7ilmXUbIaPlghqkNnQuR8rD7zoYA_JlKmuyQTUktclnk-F7bWP5OGz01aJcQCsfMB_nwCCaM_5230azZnaRN69hn9dBGIIJXyIbcpe3h_wMgVappeCRbKjwJPzwJP6UbF0_0CxVO6hYqFbiq9r_ZyQc1qi9WuLHflajE0tK9o1eKKNrSud1jintad0pq01mWlNgvTYInrcreqy31V4aqgWm07bHeI3XaDuhTrkkZpbGHteUxHfmFinKlJtm5xYWVLNubXAaKy0vVLNjoRFHhIodRwy0C_ZoqcopvjIjQp17Kd-yjWpTWR4z07G7bUaGJSDKOJ2cak0r0H3P0WWczBNh9uJ8PD3N40S2lvj-UU_A9SLPCUGUSBpxuJc4P_BAAA__-_LSRz">