From cbf2b79e1f1c7be66da2a5f4a2e9105696bd2ec0 Mon Sep 17 00:00:00 2001 From: Maksim Shabunin Date: Wed, 25 May 2016 18:04:32 +0300 Subject: [PATCH] Fixed documentation warnings produced by updated doxygen --- .../include/opencv2/core/hal/intrin_cpp.hpp | 32 +++++++++---------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/modules/core/include/opencv2/core/hal/intrin_cpp.hpp b/modules/core/include/opencv2/core/hal/intrin_cpp.hpp index 3929e0d03f..04b1d928b2 100644 --- a/modules/core/include/opencv2/core/hal/intrin_cpp.hpp +++ b/modules/core/include/opencv2/core/hal/intrin_cpp.hpp @@ -116,32 +116,32 @@ These operations allow to reorder or recombine elements in one or multiple vecto Element-wise binary and unary operations. - Arithmetics: -@ref operator+(const v_reg &a, const v_reg &b) "+", -@ref operator-(const v_reg &a, const v_reg &b) "-", -@ref operator*(const v_reg &a, const v_reg &b) "*", -@ref operator/(const v_reg &a, const v_reg &b) "/", +@ref operator +(const v_reg &a, const v_reg &b) "+", +@ref operator -(const v_reg &a, const v_reg &b) "-", +@ref operator *(const v_reg &a, const v_reg &b) "*", +@ref operator /(const v_reg &a, const v_reg &b) "/", @ref v_mul_expand - Non-saturating arithmetics: @ref v_add_wrap, @ref v_sub_wrap - Bitwise shifts: -@ref operator<<(const v_reg &a, int s) "<<", -@ref operator>>(const v_reg &a, int s) ">>", +@ref operator <<(const v_reg &a, int s) "<<", +@ref operator >>(const v_reg &a, int s) ">>", @ref v_shl, @ref v_shr - Bitwise logic: -@ref operator&(const v_reg &a, const v_reg &b) "&", -@ref operator|(const v_reg &a, const v_reg &b) "|", -@ref operator^(const v_reg &a, const v_reg &b) "^", -@ref operator~(const v_reg &a) "~" +@ref operator &(const v_reg &a, const v_reg &b) "&", +@ref operator |(const v_reg &a, const v_reg &b) "|", +@ref operator ^(const v_reg &a, const v_reg &b) "^", +@ref operator ~(const v_reg &a) "~" - Comparison: -@ref operator>(const v_reg &a, const v_reg &b) ">", -@ref operator>=(const v_reg &a, const v_reg &b) ">=", -@ref operator<(const v_reg &a, const v_reg &b) "<", -@ref operator<=(const v_reg &a, const v_reg &b) "<=", -@ref operator==(const v_reg &a, const v_reg &b) "==", -@ref operator!=(const v_reg &a, const v_reg &b) "!=" +@ref operator >(const v_reg &a, const v_reg &b) ">", +@ref operator >=(const v_reg &a, const v_reg &b) ">=", +@ref operator <(const v_reg &a, const v_reg &b) "<", +@ref operator <=(const v_reg &a, const v_reg &b) "<=", +@ref operator ==(const v_reg &a, const v_reg &b) "==", +@ref operator !=(const v_reg &a, const v_reg &b) "!=" - min/max: @ref v_min, @ref v_max