1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-30 07:43:03 +04:00

Fixed warnings produced by clang-9.0.0

This commit is contained in:
Maksim Shabunin
2019-01-28 14:48:00 +03:00
parent e2dbf054ac
commit ea3dc78986
6 changed files with 14 additions and 15 deletions
+1 -1
View File
@@ -66,7 +66,7 @@ Mat CameraParams::K() const
Mat_<double> k = Mat::eye(3, 3, CV_64F);
k(0,0) = focal; k(0,2) = ppx;
k(1,1) = focal * aspect; k(1,2) = ppy;
return k;
return std::move(k);
}
} // namespace detail