Skip to content

Commit 111cdd7

Browse files
committed
GAPI: fix warnings in own::Mat default generated constructors/assign op
1 parent f0c411d commit 111cdd7

File tree

1 file changed

+4
-4
lines changed
  • modules/gapi/include/opencv2/gapi/own

1 file changed

+4
-4
lines changed

modules/gapi/include/opencv2/gapi/own/mat.hpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -124,11 +124,11 @@ namespace cv { namespace gapi { namespace own {
124124
data = ptr(roi.y, roi.x);
125125
}
126126

127-
Mat(Mat const& src) = default;
128-
Mat(Mat&& src) = default;
127+
Mat(Mat const& ) = default;
128+
Mat(Mat&& ) = default;
129129

130-
Mat& operator=(Mat const& src) = default;
131-
Mat& operator=(Mat&& src) = default;
130+
Mat& operator=(Mat const& ) = default;
131+
Mat& operator=(Mat&& ) = default;
132132

133133
/** @brief Sets all or some of the array elements to the specified value.
134134
@param s Assigned scalar converted to the actual array type.

0 commit comments

Comments
 (0)