aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/product.h
diff options
context:
space:
mode:
Diffstat (limited to 'test/product.h')
-rw-r--r--test/product.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/product.h b/test/product.h
index f1a16cf1f..5ca56d995 100644
--- a/test/product.h
+++ b/test/product.h
@@ -67,7 +67,7 @@ template<typename MatrixType> void product(const MatrixType& m)
RowVectorType v1 = RowVectorType::Random(rows),
v2 = RowVectorType::Random(rows),
vzero = RowVectorType::Zero(rows);
- ColVectorType vc2 = ColVectorType::Random(cols), vcres;
+ ColVectorType vc2 = ColVectorType::Random(cols), vcres(cols);
OtherMajorMatrixType tm1 = m1;
Scalar s1 = ei_random<Scalar>();