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

Add missing std namespace qualifiers

This commit is contained in:
Yuriy Chernyshov
2023-09-06 13:45:28 +03:00
parent f64738218a
commit 8a415c881a
10 changed files with 26 additions and 26 deletions
+1 -1
View File
@@ -259,7 +259,7 @@ TEST_P (CountNonZeroND, ndim)
const int ONE_SIZE = 5;
vector<int> sizes(dims);
fill(sizes.begin(), sizes.end(), ONE_SIZE);
std::fill(sizes.begin(), sizes.end(), ONE_SIZE);
Mat data(sizes, CV_MAKETYPE(type, 1));
data = 0;