Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
serge-sans-paille committed Nov 8, 2023
1 parent 1678ced commit eab4a8b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/xsimd/arch/generic/xsimd_generic_trigo.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -707,8 +707,8 @@ namespace xsimd
template <class A, class T>
inline std::pair<batch<T, A>, batch<T, A>> sincos(batch<T, A> const& self, requires_arch<generic>) noexcept
{
#if defined(EMSCRIPTEN)
return std::make_pair(sin(self, A{}), cos(self, A{}));
#if defined(NEMSCRIPTEN)
return std::make_pair(sin(self, A {}), cos(self, A {}));
#else
using batch_type = batch<T, A>;
const batch_type x = abs(self);
Expand Down

0 comments on commit eab4a8b

Please sign in to comment.