mirror of
https://github.com/opencv/opencv.git
synced 2025-01-18 06:03:15 +08:00
Merge pull request #17847 from anton-potapov:gapi_own_mat_ctor_warnings
This commit is contained in:
commit
5924770504
@ -124,11 +124,11 @@ namespace cv { namespace gapi { namespace own {
|
||||
data = ptr(roi.y, roi.x);
|
||||
}
|
||||
|
||||
Mat(Mat const& src) = default;
|
||||
Mat(Mat&& src) = default;
|
||||
Mat(Mat const& ) = default;
|
||||
Mat(Mat&& ) = default;
|
||||
|
||||
Mat& operator=(Mat const& src) = default;
|
||||
Mat& operator=(Mat&& src) = default;
|
||||
Mat& operator=(Mat const& ) = default;
|
||||
Mat& operator=(Mat&& ) = default;
|
||||
|
||||
/** @brief Sets all or some of the array elements to the specified value.
|
||||
@param s Assigned scalar converted to the actual array type.
|
||||
|
Loading…
Reference in New Issue
Block a user