1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 23:33:05 +04:00

More fixes for iterators-are-pointers case

This commit is contained in:
Yuriy Chernyshov
2023-09-15 12:37:43 +03:00
parent 4790a3732e
commit 638c575c73
2 changed files with 4 additions and 7 deletions
@@ -349,7 +349,7 @@ int quad_segment_maxima(const DetectorParameters &td, int sz, struct line_fit_pt
}
y[iy] = acc;
}
copy(y.begin(), y.end(), errs.begin());
std::copy(y.begin(), y.end(), errs.begin());
}
std::vector<int> maxima(sz);