fix some compilation errors with ICC and -strict-ansi

This commit is contained in:
Gael Guennebaud
2012-01-31 09:14:01 +01:00
parent 87138075da
commit 18e3ac0f0d
5 changed files with 13 additions and 13 deletions

View File

@@ -719,7 +719,7 @@ struct first_aligned_impl<Derived, false>
{
inline static typename Derived::Index run(const Derived& m)
{
return first_aligned(&m.const_cast_derived().coeffRef(0,0), m.size());
return internal::first_aligned(&m.const_cast_derived().coeffRef(0,0), m.size());
}
};