Fix MacOSX compilation.

This commit is contained in:
Phenom 2017-04-21 15:57:57 +02:00
parent 7400a8d768
commit 969b5ce1f1

View File

@ -104,7 +104,11 @@ public:
w[nwh] = cos(delta * nwh);
w[nwh + 1] = w[nwh];
for (j = 2; j <= nwh - 2; j += 2) {
#ifdef __APPLE__
__sincos(delta*j,&y,&x);
#else
sincos(delta*j,&y,&x) ;
#endif
//x = cos(delta * j);
//y = sin(delta * j);
w[j] = x;