Recent content by GuyIncognito

  1. G

    C/C++ [C++] Pointers to member functions

    I feel your pain, I wasted many hours trying to integrate GSL into my C++ code. There is no way that you can pass a pointer-to-member function to the GSL routines because they are of a different type than a pointer-to-function. For example, for the function: double func(double, void*)...