因为在程序中使用了匿名函数,但在 VS2010 中编译有问题。但把同样的代码用 G++来编译就没有问题。。
所以请问如何更改 vs2010 的编译器?
代码简化如下:
#include <algorithm>
#include <iostream>
using namespace std;
int main()
{
struct Fun {
int x, y, z;
Fun():x(0), y(0), z(0) {}
};
auto fFun = [&]() {
Fun f;
cout << f.x << " " << f.y << " " << f.z << endl;
};
fFun();
}