Commit e06c696b authored by Viet Dinh's avatar Viet Dinh

fix whitespace errors

parent 40ce9f97
...@@ -2469,7 +2469,6 @@ int cv::solveCubic( InputArray _coeffs, OutputArray _roots ) ...@@ -2469,7 +2469,6 @@ int cv::solveCubic( InputArray _coeffs, OutputArray _roots )
double cv::solvePoly( InputArray _coeffs0, OutputArray _roots0, int maxIters ) double cv::solvePoly( InputArray _coeffs0, OutputArray _roots0, int maxIters )
{ {
typedef Complex<double> C; typedef Complex<double> C;
double maxDiff = 0; double maxDiff = 0;
int iter, i, j; int iter, i, j;
Mat coeffs0 = _coeffs0.getMat(); Mat coeffs0 = _coeffs0.getMat();
...@@ -2496,7 +2495,6 @@ double cv::solvePoly( InputArray _coeffs0, OutputArray _roots0, int maxIters ) ...@@ -2496,7 +2495,6 @@ double cv::solvePoly( InputArray _coeffs0, OutputArray _roots0, int maxIters )
} }
C p(1, 0), r(1, 1); C p(1, 0), r(1, 1);
for( i = 0; i < n; i++ ) for( i = 0; i < n; i++ )
{ {
roots[i] = p; roots[i] = p;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment