Skip to content

Commit

Permalink
GAPI: fix warnings in own::Mat default generated constructors/assign op
Browse files Browse the repository at this point in the history
  • Loading branch information
anton-potapov committed Jul 15, 2020
1 parent f0c411d commit 111cdd7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions modules/gapi/include/opencv2/gapi/own/mat.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 111cdd7

Please sign in to comment.