Fixed misleading indentation in intrin_cpp.hpp
authorMaksim Shabunin <maksim.shabunin@gmail.com>
Tue, 27 Nov 2018 11:36:23 +0000 (14:36 +0300)
committerMaksim Shabunin <maksim.shabunin@gmail.com>
Tue, 27 Nov 2018 12:29:37 +0000 (15:29 +0300)
modules/core/include/opencv2/core/hal/intrin_cpp.hpp

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