fixed misprint in MatOp::augAssignXor

This commit is contained in:
Vladislav Vinogradov 2013-04-01 11:16:47 +04:00
parent 87bb7ff558
commit b28677bd90

@ -319,7 +319,7 @@ void MatOp::augAssignXor(const MatExpr& expr, Mat& m) const
{ {
Mat temp; Mat temp;
expr.op->assign(expr, temp); expr.op->assign(expr, temp);
m /= temp; m ^= temp;
} }