Fix bug #133: remove the EIGEN_RESTRICT which was useless here anyway

This commit is contained in:
Gael Guennebaud 2010-12-13 09:56:13 +01:00
parent f2c18f2e37
commit 68fe80861c

View File

@ -172,7 +172,7 @@ template<typename Derived> class MapBase<Derived, ReadOnlyAccessors>
&& "data is not aligned");
}
PointerType EIGEN_RESTRICT m_data;
PointerType m_data;
const internal::variable_if_dynamic<Index, RowsAtCompileTime> m_rows;
const internal::variable_if_dynamic<Index, ColsAtCompileTime> m_cols;
};