fix a compilation pb with clang (it's actually surprising gcc did not complain)

This commit is contained in:
Thomas Capricelli 2010-05-20 03:53:09 +02:00
parent cec297f77b
commit b9bcd93ddc

View File

@ -499,7 +499,7 @@ class DenseCoeffsBase<Derived, true> : public DenseCoeffsBase<Derived, false>
const int row = rowIndexByOuterInner(outer,inner); const int row = rowIndexByOuterInner(outer,inner);
const int col = colIndexByOuterInner(outer,inner); const int col = colIndexByOuterInner(outer,inner);
// derived() is important here: copyCoeff() may be reimplemented in Derived! // derived() is important here: copyCoeff() may be reimplemented in Derived!
derived().copyPacket<OtherDerived, StoreMode, LoadMode>(row, col, other); derived().template copyPacket< OtherDerived, StoreMode, LoadMode>(row, col, other);
} }
#endif #endif