4 Feb
2010
4 Feb
'10
4:50 p.m.
If I have class with to versions of member function: const and non-const, and I use bind to access this member function, then I get a lot of errors. For example: struct A { void foo(void){}; void foo(void)const{}; }; const A a; lambda::bind(&A::foo,lambda::_1 )(a); Can I do something to solve this problem?