aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorBenoit Jacob <benoitjacob@google.com>2015-06-30 12:29:59 -0400
committerBenoit Jacob <benoitjacob@google.com>2015-06-30 12:29:59 -0400
commit05fe695259544ec0da48cb86c5dee51360e43afc (patch)
treecd44963452fdd5f5cb7aab9661e7bc9cefd10f8a /test
parent75c4ec0ba4dd86e4f763a54e01002ff29f1d57ae (diff)
downloadgemmlowp-05fe695259544ec0da48cb86c5dee51360e43afc.tar.gz
fixes
Diffstat (limited to 'test')
-rw-r--r--test/test.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test.h b/test/test.h
index f630674..754c6ec 100644
--- a/test/test.h
+++ b/test/test.h
@@ -57,7 +57,7 @@ class Matrix : public MatrixMap<tScalar, tOrder> {
Matrix(int rows, int cols) : Map(nullptr, 0, 0, 0) { Resize(rows, cols); }
- Matrix(const Matrix& other) { *this = other; }
+ Matrix(const Matrix& other) : Map(nullptr, 0, 0, 0) { *this = other; }
Matrix& operator=(const Matrix& other) {
Resize(other.rows_, other.cols_);