Using C++0x, how do I capture a variable when I have a lambda within a lambda? For example:

std::vector<int> c1;
int v = 10; <--- I want to capture this variable

std::for_each(
    c1.begin(),
    c1.end(),
    [v](int num) <--- This is fine...
    {
        std::vector<int> c2;

        std::for_each(
            c2.begin(),
            c2.end(),
            [v](int num) <--- error on this line, how do I recapture v?
            {
                // Do something
            });
    });
link|improve this question

I would guess assigning the variable in the first closure might help. – Gabriel Ščerbák May 23 '10 at 12:34
3  
The above is fine on gcc4.5 - are you using VC10? – Georg Fritzsche May 23 '10 at 12:47
1  
Yes, VC10. I shall report it to Microsoft. – DanDan May 23 '10 at 12:51
Sounds good, i don't see why this shouldn't work. – Georg Fritzsche May 23 '10 at 12:58
1  
Microsoft Connect entry. – Georg Fritzsche May 24 '10 at 17:28
show 2 more comments
feedback

3 Answers

up vote 5 down vote accepted
std::for_each(
        c1.begin(),
        c1.end(),
        [&](int num)
        {
            std::vector<int> c2;
            int& v_ = v;
            std::for_each(
                c2.begin(),
                c2.end(),
                [&](int num)
                {
                    v_ = num;
                }
            );
        }
    );

Not especially clean, but it does work.

link|improve this answer
Thanks for the workaround, hopefully this will be fixed in a later version. – DanDan May 23 '10 at 13:05
feedback

The best I could come up with is this:

std::vector<int> c1;
int v = 10; 

std::for_each(
    c1.begin(),
    c1.end(),
    [v](int num) 
    {
        std::vector<int> c2;
        int vv=v;

        std::for_each(
            c2.begin(),
            c2.end(),
            [&](int num) // <-- can replace & with vv
            {
                int a=vv;
            });
    });

Interesting problem! I'll sleep on it and see if i can figure something better out.

link|improve this answer
is vv required? Will the inner lamdba work without? – deft_code May 24 '10 at 15:39
feedback

in the inner lambda you should have(assuming you want to pass the variable by reference) :

[&v](int num)->void{

  int a =v;
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.