From 9ee6f108962eb49d12fa07fdf6ede9d661ec784c Mon Sep 17 00:00:00 2001 From: Tomoaki Teshima Date: Wed, 2 Nov 2016 23:18:58 +0900 Subject: [PATCH] fix build error --- modules/core/include/opencv2/core/hal/intrin_neon.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/core/include/opencv2/core/hal/intrin_neon.hpp b/modules/core/include/opencv2/core/hal/intrin_neon.hpp index 629548aed7..b000733a5f 100644 --- a/modules/core/include/opencv2/core/hal/intrin_neon.hpp +++ b/modules/core/include/opencv2/core/hal/intrin_neon.hpp @@ -301,7 +301,7 @@ struct v_float16x4 } short get0() const { - return vget_lane_s16(vreinterpret_f16_s16(val), 0); + return vget_lane_s16(vreinterpret_s16_f16(val), 0); } float16x4_t val; };