以下のコードの何が問題になっていますか? 構造体のメンバーの最初が 0 に等しい場合、構造体のリストで要素を見つけることになっています。コンパイラは、ラムダ引数が述語型ではないことについて不平を言います。
#include <iostream>
#include <stdint.h>
#include <fstream>
#include <list>
#include <algorithm>
struct S
{
int S1;
int S2;
};
using namespace std;
int main()
{
list<S> l;
S s1;
s1.S1 = 0;
s1.S2 = 0;
S s2;
s2.S1 = 1;
s2.S2 = 1;
l.push_back(s2);
l.push_back(s1);
list<S>::iterator it = find_if(l.begin(), l.end(), [] (S s) { return s.S1 == 0; } );
}