From 4860f875c96ff7631b728bef2d08319fe65076ee Mon Sep 17 00:00:00 2001 From: madshall Date: Wed, 22 Oct 2014 21:26:52 -0400 Subject: [PATCH] oops, bitwiseNot() hotfix --- src/Matrix.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Matrix.cc b/src/Matrix.cc index 0ad3045..5df1b19 100755 --- a/src/Matrix.cc +++ b/src/Matrix.cc @@ -1050,7 +1050,6 @@ NAN_METHOD(Matrix::BitwiseNot) { }else{ cv::bitwise_not(self->mat, dst->mat); } - cv::bitwise_not(self->mat, dst->mat); NanReturnNull(); }