boost lambda::bind return type selection
- by psaghelyi
I would like to call a member through lambda::bind. Unfortunately I have got to members with the same name but different return type.
Is there a way to help the lambda::bind to deduce the right return type for a member function call?
#include <vector>
#include <iostream>
#include <algorithm>
#include <boost/bind.hpp>…