diff options
author | Gael Guennebaud <g.gael@free.fr> | 2010-12-13 09:56:13 +0100 |
---|---|---|
committer | Gael Guennebaud <g.gael@free.fr> | 2010-12-13 09:56:13 +0100 |
commit | 68fe80861c5c674ed1a29a86aafc8347236a31a1 (patch) | |
tree | a09defa5372d8e71792cf4cbe61ed351a9b6c452 | |
parent | f2c18f2e373d3dbe653af9b97dd3f7c0ea39033d (diff) |
Fix bug #133: remove the EIGEN_RESTRICT which was useless here anyway
-rw-r--r-- | Eigen/src/Core/MapBase.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/Core/MapBase.h b/Eigen/src/Core/MapBase.h index 435d9c09d..42e36903d 100644 --- a/Eigen/src/Core/MapBase.h +++ b/Eigen/src/Core/MapBase.h @@ -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; }; |