diff --git a/Vc/common/trigonometric.h b/Vc/common/trigonometric.h index 3887857e2..07dc91c3e 100644 --- a/Vc/common/trigonometric.h +++ b/Vc/common/trigonometric.h @@ -63,12 +63,12 @@ namespace Common { template struct Trigonometric { - template static T sin(const T &_x); - template static T cos(const T &_x); - template static void sincos(const T &_x, T *_sin, T *_cos); - template static T asin (const T &_x); - template static T atan (const T &_x); - template static T atan2(const T &y, const T &x); + template static T Vc_VDECL sin(const T &_x); + template static T Vc_VDECL cos(const T &_x); + template static void Vc_VDECL sincos(const T &_x, T *_sin, T *_cos); + template static T Vc_VDECL asin (const T &_x); + template static T Vc_VDECL atan (const T &_x); + template static T Vc_VDECL atan2(const T &y, const T &x); }; } // namespace Common