| I just ran into this same problem. There are several pow() functions, because they covered all possibilities of argument flavors. I got an error because I happened to use one that didn't exist, pow(int, double). To fix it, I just typecast my int to a double;
int i;
double d, e;
...
e = pow((double)i, d); |