Commit b28677bd authored by Vladislav Vinogradov's avatar Vladislav Vinogradov

fixed misprint in MatOp::augAssignXor

parent 87bb7ff5
...@@ -319,7 +319,7 @@ void MatOp::augAssignXor(const MatExpr& expr, Mat& m) const ...@@ -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;
} }
......
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