workaround ICC compilation error with -strict-ansi

This commit is contained in:
Gael Guennebaud
2012-01-25 15:45:01 +01:00
parent d615d39af0
commit 87f2af5930
5 changed files with 10 additions and 10 deletions

View File

@@ -214,7 +214,7 @@ struct redux_impl<Func, Derived, LinearVectorizedTraversal, NoUnrolling>
const Index size = mat.size();
eigen_assert(size && "you are using an empty matrix");
const Index packetSize = packet_traits<Scalar>::size;
const Index alignedStart = first_aligned(mat);
const Index alignedStart = internal::first_aligned(mat);
enum {
alignment = bool(Derived::Flags & DirectAccessBit) || bool(Derived::Flags & AlignedBit)
? Aligned : Unaligned