1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 23:33:05 +04:00

fixed misprint in MatOp::augAssignXor

This commit is contained in:
Vladislav Vinogradov
2013-04-01 11:16:47 +04:00
parent 87bb7ff558
commit b28677bd90
+1 -1
View File
@@ -319,7 +319,7 @@ void MatOp::augAssignXor(const MatExpr& expr, Mat& m) const
{
Mat temp;
expr.op->assign(expr, temp);
m /= temp;
m ^= temp;
}