aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/constructor.cpp
Commit message (Collapse)AuthorAge
* fix unit test in c++03: c++03 does not allow passing local or anonymous enum ↵Gravatar Gael Guennebaud2019-03-18
| | | | as template param
* bug #1692: enable enum as sizes of Matrix and ArrayGravatar Gael Guennebaud2019-03-17
|
* Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with ↵Gravatar Gael Guennebaud2018-07-17
| | | | | | | | | EIGEN_DECLARE_TEST(mytest) { /* code */ }. This provide several advantages: - more flexibility in designing unit tests - unit tests can be glued to speed up compilation - unit tests are compiled with same predefined macros, which is a requirement for zapcc
* bug #1393: enable Matrix/Array explicit ctor from types with conversion ↵Gravatar Gael Guennebaud2017-02-17
operators (was ok with 3.2)