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

cuda: eliminate part of build warnings

This commit is contained in:
Alexander Alekhin
2018-04-05 13:44:44 +03:00
parent f93c1b942a
commit 7818071ba2
18 changed files with 103 additions and 83 deletions
+2 -2
View File
@@ -560,8 +560,8 @@ namespace
explicit StackAllocator(cudaStream_t stream);
~StackAllocator();
bool allocate(GpuMat* mat, int rows, int cols, size_t elemSize);
void free(GpuMat* mat);
bool allocate(GpuMat* mat, int rows, int cols, size_t elemSize) CV_OVERRIDE;
void free(GpuMat* mat) CV_OVERRIDE;
private:
StackAllocator(const StackAllocator&);