From 780eeb3be779ea3fd6065f283278793ac7557287 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Thu, 5 Nov 2015 00:32:48 -0800 Subject: [PATCH] prevent stack overflow in unit test --- test/product_small.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/product_small.cpp b/test/product_small.cpp index c561ec63b..2a2c1e35f 100644 --- a/test/product_small.cpp +++ b/test/product_small.cpp @@ -58,7 +58,7 @@ void test_product_small() } { - Eigen::Matrix A, B, C; + Eigen::Matrix A, B, C; A.setRandom(); C = A; for(int k=0; k<79; ++k)