Skip to content

Commit 3b71c0c

Browse files
authored
Merge pull request #606 from cyb70289/constexpr-neon64
Fix constexpr make_tuple in neon64
2 parents 9fbb3cb + e14e9a5 commit 3b71c0c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/xsimd/arch/xsimd_neon64.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -804,7 +804,7 @@ namespace xsimd
804804
uint32x4_t, int32x4_t,
805805
uint64x2_t, int64x2_t,
806806
float32x4_t>;
807-
constexpr caster_type caster = {
807+
const caster_type caster = {
808808
std::make_tuple(wrap::vreinterpretq_f64_u8, wrap::vreinterpretq_f64_s8, wrap::vreinterpretq_f64_u16, wrap::vreinterpretq_f64_s16,
809809
wrap::vreinterpretq_f64_u32, wrap::vreinterpretq_f64_s32, wrap::vreinterpretq_f64_u64, wrap::vreinterpretq_f64_s64,
810810
wrap::vreinterpretq_f64_f32)
@@ -840,7 +840,7 @@ namespace xsimd
840840
uint32x4_t, int32x4_t,
841841
uint64x2_t, int64x2_t,
842842
float32x4_t>;
843-
constexpr caster_type caster = {
843+
const caster_type caster = {
844844
std::make_tuple(wrap::vreinterpretq_u8_f64, wrap::vreinterpretq_s8_f64, wrap::vreinterpretq_u16_f64, wrap::vreinterpretq_s16_f64,
845845
wrap::vreinterpretq_u32_f64, wrap::vreinterpretq_s32_f64, wrap::vreinterpretq_u64_f64, wrap::vreinterpretq_s64_f64,
846846
wrap::vreinterpretq_f32_f64)

0 commit comments

Comments
 (0)