Skip to content

Commit b28677b

Browse files
author
Vladislav Vinogradov
committed
fixed misprint in MatOp::augAssignXor
1 parent 87bb7ff commit b28677b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/core/src/matop.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ void MatOp::augAssignXor(const MatExpr& expr, Mat& m) const
319319
{
320320
Mat temp;
321321
expr.op->assign(expr, temp);
322-
m /= temp;
322+
m ^= temp;
323323
}
324324

325325

0 commit comments

Comments
 (0)