|
|
|
|
error: invalid conversion from ‘void (*)(double*, int)’ to ‘void*’ [-fpermissive] |
|
|
|
|
error: default template arguments may not be used in function templates without -std=c++0x or -std=gnu++0x |
You are trying to use very compound C++ constructions. It is better if the function will have only one parameter a pointer to a function pointer. In this case you will be able to pass an array of function pointers to your function. |
|
|