mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-15 07:10:37 +08:00
fix compilation with c++11
This commit is contained in:
parent
69378eed0b
commit
8b7431d8fd
@ -39,7 +39,7 @@ static void test_fixed_size()
|
||||
|
||||
static void test_match()
|
||||
{
|
||||
Eigen::DSizes<unsigned int, 3> dyn(2,3,7);
|
||||
Eigen::DSizes<unsigned int, 3> dyn((unsigned int)2,(unsigned int)3,(unsigned int)7);
|
||||
Eigen::Sizes<2,3,7> stat;
|
||||
VERIFY_IS_EQUAL(Eigen::dimensions_match(dyn, stat), true);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user