Below is an example that fails to compile. I have a vector of pointers to a
templated class and I need to use find_if. My understanding of boost::bind. is
that the first argument, when binding member function, is an explicit "this"
pointer,
that should be A* in my case.
Any help in explaining what I am doing wrong will be greatly appreciated.
#include <algorithm>
#include <string>
#include <vector>
#include