trivial compilation fix

This commit is contained in:
Gael Guennebaud 2009-10-13 08:53:01 +02:00
parent c4ab6a2032
commit 2049f742e4

View File

@ -93,6 +93,7 @@ void construct_at_boundary(int boundary)
void unalignedassert() void unalignedassert()
{ {
#if EIGEN_ALIGN
construct_at_boundary<Vector2f>(4); construct_at_boundary<Vector2f>(4);
construct_at_boundary<Vector3f>(4); construct_at_boundary<Vector3f>(4);
construct_at_boundary<Vector4f>(16); construct_at_boundary<Vector4f>(16);
@ -111,6 +112,7 @@ void unalignedassert()
construct_at_boundary<Vector3cf>(4); construct_at_boundary<Vector3cf>(4);
construct_at_boundary<Vector2cd>(16); construct_at_boundary<Vector2cd>(16);
construct_at_boundary<Vector3cd>(16); construct_at_boundary<Vector3cd>(16);
#endif
check_unalignedassert_good<TestNew1>(); check_unalignedassert_good<TestNew1>();
check_unalignedassert_good<TestNew2>(); check_unalignedassert_good<TestNew2>();