simd-math
simd-math copied to clipboard
templated simd constructor with unused flags
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))
{}