From 699eda46b6278a6aeb6a9c58cbb605387b8a0075 Mon Sep 17 00:00:00 2001 From: Max Khardin Date: Sat, 4 Jan 2014 20:09:30 +0800 Subject: [PATCH] Remove three sneaky tabs --- modules/core/perf/perf_arithm.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/core/perf/perf_arithm.cpp b/modules/core/perf/perf_arithm.cpp index 977a70e0d..d3a75ca9c 100644 --- a/modules/core/perf/perf_arithm.cpp +++ b/modules/core/perf/perf_arithm.cpp @@ -214,9 +214,9 @@ PERF_TEST_P(Size_MatType, multiply, TYPICAL_MATS_CORE_ARITHM) declare.in(a, b, WARMUP_RNG).out(c); if (CV_MAT_DEPTH(type) == CV_32S) { - //According to docs, saturation is not applied when result is 32bit integer - a /= (2 << 16); - b /= (2 << 16); + //According to docs, saturation is not applied when result is 32bit integer + a /= (2 << 16); + b /= (2 << 16); } TEST_CYCLE() multiply(a, b, c);