From 89f0e0a8d1b0c352cebf7280fd041d44bbbb8517 Mon Sep 17 00:00:00 2001 From: Maksim Shabunin Date: Tue, 27 Nov 2018 14:36:23 +0300 Subject: [PATCH] Fixed misleading indentation in intrin_cpp.hpp --- modules/core/include/opencv2/core/hal/intrin_cpp.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/core/include/opencv2/core/hal/intrin_cpp.hpp b/modules/core/include/opencv2/core/hal/intrin_cpp.hpp index 1cfb14ae06..d1f00a279e 100644 --- a/modules/core/include/opencv2/core/hal/intrin_cpp.hpp +++ b/modules/core/include/opencv2/core/hal/intrin_cpp.hpp @@ -686,10 +686,10 @@ OPENCV_HAL_IMPL_CMP_OP(!=) template inline v_reg v_not_nan(const v_reg& a) { -typedef typename V_TypeTraits::int_type itype; -v_reg c; -for (int i = 0; i < n; i++) - c.s[i] = V_TypeTraits::reinterpret_from_int((itype)-(int)(a.s[i] == a.s[i])); + typedef typename V_TypeTraits::int_type itype; + v_reg c; + for (int i = 0; i < n; i++) + c.s[i] = V_TypeTraits::reinterpret_from_int((itype)-(int)(a.s[i] == a.s[i])); return c; } template