Error: Expression preceding parantheses

Hello.

I am writing functions for determining wind chill. Everything has been working, but on the section below, I am getting red lines under the parens and the notification: Error: Expression preceding parantheses of apparent call must have pointer to function type.

The only places I am getting the message are on the parantheses for windsp, both times.

double CalcWindChill(double temp, double windsp)

{
double windChill;

cout << windChill = (35.74)+(0.6215*(temp)) - 35.75*((windsp)(pow)(.16)) + 0.4275 *(temp)*((windsp)(pow)(.16)));

return windChill;
}

Any help would be gratefully accepted.
pow is a function, not an operator: std::pow(windsp, 0.16)
Topic archived. No new replies allowed.