次のコードはgcc 4.5.1でコンパイルされますが、VS2010 SP1ではコンパイルされません。
#include <iostream>
#include <vector>
#include <map>
#include <utility>
#include <set>
#include <algorithm>
using namespace std;
class puzzle
{
vector<vector<int>> grid;
map<int,set<int>> groups;
public:
int member_function();
};
int puzzle::member_function()
{
int i;
for_each(groups.cbegin(),groups.cend(),[grid,&i](pair<int,set<int>> group){
i++;
cout<<i<<endl;
});
}
int main()
{
return 0;
}
これはエラーです:
error C3480: 'puzzle::grid': a lambda capture variable must be from an enclosing function scope
warning C4573: the usage of 'puzzle::grid' requires the compiler to capture 'this' but the current default capture mode does not allow it
そう、
1>どのコンパイラが正しいですか?
2> VS2010でラムダ内のメンバー変数を使用するにはどうすればよいですか?
関連; 非常に参考:thispointer.com/...
—
ガブリエルステープルズ
pair<const int, set<int> >
あります。これは、マップの実際のペアタイプです。おそらくconstへの参照でもあるはずです。