From: Roman Donchenko Date: Mon, 19 May 2014 13:38:30 +0000 (+0400) Subject: Remove a useless loop that copies an array to itself X-Git-Tag: accepted/tizen/6.0/unified/20201030.111113~1314^2~479^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bea46c90b5ecf35ced46698c61df0b9ed965e398;p=platform%2Fupstream%2Fopencv.git Remove a useless loop that copies an array to itself --- diff --git a/modules/legacy/src/calibfilter.cpp b/modules/legacy/src/calibfilter.cpp index 64b9957..49ff6e5 100644 --- a/modules/legacy/src/calibfilter.cpp +++ b/modules/legacy/src/calibfilter.cpp @@ -333,12 +333,6 @@ void CvCalibFilter::Stop( bool calibrate ) points[0],points[1], buffer, &stereo); - - for( i = 0; i < 9; i++ ) - { - stereo.fundMatr[i] = stereo.fundMatr[i]; - } - } }