Assume I have this class (inherited from std::Vector, it\'s just an example)
#include using namespace std; template class C
You need to bind the this pointer:
this
public: void method() { for_each(this->begin(), this->end(), bind(&C::transformation, this, placeholders::_1)); }