id,summary,reporter,owner,description,type,status,milestone,component,version,severity,resolution,keywords,cc 5913,Boost.Asio interferes with C++0x-Lambdas having [this]-Capture on MSVC2010,boost@…,,"Short Code to reproduce the Problem: #include {{{ #!cpp struct Data { int i; }; struct Foo { Data* data; void bar() { auto callback = [this]() { data->i = 5; }; } }; }}} Gives an error on line 10: {{{error C2326: 'void `anonymous-namespace'::::operator ()(void) const': function can not access 'Foo::data' }}} removing the #include fixes the error as well as specifying the access by {{{this->data->i = 5;}}} Setup used: MSVC2010 Ultimate with Boost 1.46.1",Bugs,closed,To Be Determined,None,Boost 1.46.1,Not Applicable,invalid,,