From 111cdd7a32457b621564dea33f05b49ad7710237 Mon Sep 17 00:00:00 2001 From: Anton Potapov Date: Wed, 15 Jul 2020 10:49:05 +0300 Subject: [PATCH] GAPI: fix warnings in own::Mat default generated constructors/assign op --- modules/gapi/include/opencv2/gapi/own/mat.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/gapi/include/opencv2/gapi/own/mat.hpp b/modules/gapi/include/opencv2/gapi/own/mat.hpp index 15fb9a3762..a10985866b 100644 --- a/modules/gapi/include/opencv2/gapi/own/mat.hpp +++ b/modules/gapi/include/opencv2/gapi/own/mat.hpp @@ -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.