simd-math icon indicating copy to clipboard operation
simd-math copied to clipboard

templated simd constructor with unused flags

Open fnrizzi opened this issue 4 years ago • 0 comments

One of the simd constructor is templated but the template doesn't seem to be used:

template <class Flags>
  SIMD_ALWAYS_INLINE inline simd(double const* ptr, Flags /*flags*/)
    :m_value(_mm_loadu_pd(ptr))
  {}

fnrizzi avatar Sep 20 '21 06:09 fnrizzi