aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/basicstuff.cpp
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2008-09-14 11:59:10 +0000
committerGravatar Gael Guennebaud <g.gael@free.fr>2008-09-14 11:59:10 +0000
commitdb030d4e285510f3684f7bce771ebe72b1505cb2 (patch)
tree20fd695ab4fc28df0df394fd7821726bab67076c /test/basicstuff.cpp
parent8473a77f2fc3461a4d93de08cda4a50a62ca0abe (diff)
* fix issues with "long double" type (useful to enforce the use of x87 registers)
* extend the documentation on "extending Eigen"
Diffstat (limited to 'test/basicstuff.cpp')
-rw-r--r--test/basicstuff.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/basicstuff.cpp b/test/basicstuff.cpp
index 769e021af..40e999c87 100644
--- a/test/basicstuff.cpp
+++ b/test/basicstuff.cpp
@@ -111,5 +111,6 @@ void test_basicstuff()
CALL_SUBTEST( basicStuff(MatrixXi(8, 12)) );
CALL_SUBTEST( basicStuff(MatrixXcd(20, 20)) );
CALL_SUBTEST( basicStuff(Matrix<float, 100, 100>()) );
+ CALL_SUBTEST( basicStuff(Matrix<long double,Dynamic,Dynamic>(10,10)) );
}
}