We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0c411d commit 111cdd7Copy full SHA for 111cdd7
modules/gapi/include/opencv2/gapi/own/mat.hpp
@@ -124,11 +124,11 @@ namespace cv { namespace gapi { namespace own {
124
data = ptr(roi.y, roi.x);
125
}
126
127
- Mat(Mat const& src) = default;
128
- Mat(Mat&& src) = default;
+ Mat(Mat const& ) = default;
+ Mat(Mat&& ) = default;
129
130
- Mat& operator=(Mat const& src) = default;
131
- Mat& operator=(Mat&& src) = default;
+ Mat& operator=(Mat const& ) = default;
+ Mat& operator=(Mat&& ) = default;
132
133
/** @brief Sets all or some of the array elements to the specified value.
134
@param s Assigned scalar converted to the actual array type.
0 commit comments