Commit bbdd8ba0 authored by Alexander Alekhin's avatar Alexander Alekhin

Merge pull request #8506 from sergiud:mat-move-assignment-dont-copy

parents 45e866f0 4f317599
......@@ -1818,7 +1818,7 @@ Mat_<_Tp>::Mat_(Mat_&& m)
template<typename _Tp> inline
Mat_<_Tp>& Mat_<_Tp>::operator = (Mat_&& m)
{
Mat::operator = (m);
Mat::operator = (std::move(m));
return *this;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment