Skip to content

Commit

Permalink
add vector call declaration to trigonemtry
Browse files Browse the repository at this point in the history
  • Loading branch information
EricAtORS committed Apr 24, 2021
1 parent 41a3345 commit 637d6b4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Vc/common/trigonometric.h
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,12 @@ namespace Common
{
template<typename Impl> struct Trigonometric
{
template<typename T> static T sin(const T &_x);
template<typename T> static T cos(const T &_x);
template<typename T> static void sincos(const T &_x, T *_sin, T *_cos);
template<typename T> static T asin (const T &_x);
template<typename T> static T atan (const T &_x);
template<typename T> static T atan2(const T &y, const T &x);
template<typename T> static T Vc_VDECL sin(const T &_x);
template<typename T> static T Vc_VDECL cos(const T &_x);
template<typename T> static void Vc_VDECL sincos(const T &_x, T *_sin, T *_cos);
template<typename T> static T Vc_VDECL asin (const T &_x);
template<typename T> static T Vc_VDECL atan (const T &_x);
template<typename T> static T Vc_VDECL atan2(const T &y, const T &x);
};
} // namespace Common

Expand Down

0 comments on commit 637d6b4

Please sign in to comment.