Fixed misleading indentation in intrin_cpp.hpp

pull/13298/head
Maksim Shabunin 6 years ago
parent 223893ea5a
commit 89f0e0a8d1
  1. 6
      modules/core/include/opencv2/core/hal/intrin_cpp.hpp

@ -686,9 +686,9 @@ OPENCV_HAL_IMPL_CMP_OP(!=)
template<int n> template<int n>
inline v_reg<float, n> v_not_nan(const v_reg<float, n>& a) inline v_reg<float, n> v_not_nan(const v_reg<float, n>& a)
{ {
typedef typename V_TypeTraits<float>::int_type itype; typedef typename V_TypeTraits<float>::int_type itype;
v_reg<float, n> c; v_reg<float, n> c;
for (int i = 0; i < n; i++) for (int i = 0; i < n; i++)
c.s[i] = V_TypeTraits<float>::reinterpret_from_int((itype)-(int)(a.s[i] == a.s[i])); c.s[i] = V_TypeTraits<float>::reinterpret_from_int((itype)-(int)(a.s[i] == a.s[i]));
return c; return c;
} }

Loading…
Cancel
Save