For example:
class Example
{
public:
explicit Example(int n) : num(n) {}
void addAndPrint(vector<int>& v) const
{
for_each(v.begin(), v.end(), [num](int n) { cout << num + n << " "; });
}
private:
int num;
};
int main()
{
vector<int> v = { 0, 1, 2, 3, 4 };
Example ex(1);
ex.addAndPrint(v);
return 0;
}
When you compile and run this in MSVC2010 you get the following error:
error C3480: 'Example::num': a lambda capture variable must be from an enclosing function scope
However, with g++ 4.6.2 (prerelease) you get:
1 2 3 4 5
Which compiler is right according to the standard draft?

thisby value here, notnum. When you usenum, you're really usingthis->num. Also please note that MSVC doesn't implement the C++11 wording of lambdas, since it changed after 2008 when they implemented all this. – Alexandre C. Aug 27 '11 at 12:54thisis effectively the same as capturingnumby reference. That seems to not be what's desired here. – Ben Voigt Aug 27 '11 at 14:33addAndPrint's scope (and the whole thing is likely to get inlined here anyway). 5.1.2 as quoted by @dimitri seems to indicate that MSVC is right, sincenumisn't a variable with automatic storage duration. This behavior is quite weird however. – Alexandre C. Aug 27 '11 at 15:28