You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#include<algorithm>
#include<vector>voidf()
{
auto it = [](const std::vector<int>& v) {
return v.cbegin();
};
}
<source>:6:15: warning: use a trailing return type for this lambda [modernize-use-trailing-return-type]
6 | auto it = [](const std::vector<int>& v) {
| ^
| -> const_iterator