Merge pull request #24814 from cudawarped:fix_core_clang_warnings

core: fix clang warnings
This commit is contained in:
Alexander Smorkalov 2024-01-06 11:32:37 +03:00 committed by GitHub
commit 9af4ceed98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -99,7 +99,7 @@ namespace cv { namespace cuda
}
#if (CUDART_VERSION >= 12000)
template<class T> inline void createTextureObjectPitch2D(cudaTextureObject_t* tex, PtrStepSz<T>& img, const cudaTextureDesc& texDesc) {
template<class T> inline void createTextureObjectPitch2D(cudaTextureObject_t*, PtrStepSz<T>&, const cudaTextureDesc&) {
CV_Error(cv::Error::GpuNotSupported, "Function removed in CUDA SDK 12"); }
#else
//TODO: remove from OpenCV 5.x