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

Merge pull request #26455 from sturkmen72:minor_fix

Fix warnings on documentation built
This commit is contained in:
Alexander Smorkalov
2024-11-14 18:55:19 +03:00
committed by GitHub
@@ -78,6 +78,7 @@ void loadPointCloud(const String &filename, OutputArray vertices, OutputArray no
CV_UNUSED(filename);
CV_UNUSED(vertices);
CV_UNUSED(normals);
CV_UNUSED(rgb);
CV_LOG_WARNING(NULL, "File system support is disabled in this OpenCV build!");
#endif
}
@@ -116,6 +117,7 @@ void savePointCloud(const String &filename, InputArray vertices, InputArray norm
CV_UNUSED(filename);
CV_UNUSED(vertices);
CV_UNUSED(normals);
CV_UNUSED(rgb);
CV_LOG_WARNING(NULL, "File system support is disabled in this OpenCV build!");
#endif
}
@@ -243,6 +245,7 @@ void loadMesh(const String &filename, OutputArray vertices, OutputArrayOfArrays
CV_UNUSED(normals);
CV_UNUSED(colors);
CV_UNUSED(indices);
CV_UNUSED(texCoords);
CV_LOG_WARNING(NULL, "File system support is disabled in this OpenCV build!");
#endif
}
@@ -328,6 +331,7 @@ void saveMesh(const String &filename, InputArray vertices, InputArrayOfArrays in
CV_UNUSED(colors);
CV_UNUSED(normals);
CV_UNUSED(indices);
CV_UNUSED(texCoords);
CV_LOG_WARNING(NULL, "File system support is disabled in this OpenCV build!");
#endif