aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/MapBase.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2008-08-19 11:06:40 +0000
committerGravatar Gael Guennebaud <g.gael@free.fr>2008-08-19 11:06:40 +0000
commita6d387a359354c8f75f9a0dfe623600e6a303c8c (patch)
tree1244e7a577402f86233b5d2e72e50562a3eb3c13 /Eigen/src/Core/MapBase.h
parent9466e5f94edbff1219cd48639fd0ef80e11b85a9 (diff)
Various compilation fixes for MSVC 9. All tests compile but some
still fail at runtime in ei_aligned_free() (even without vectorization).
Diffstat (limited to 'Eigen/src/Core/MapBase.h')
-rw-r--r--Eigen/src/Core/MapBase.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/Core/MapBase.h b/Eigen/src/Core/MapBase.h
index 4c1a0cf2f..74b7d76aa 100644
--- a/Eigen/src/Core/MapBase.h
+++ b/Eigen/src/Core/MapBase.h
@@ -166,7 +166,7 @@ template<typename Derived> class MapBase
{ return derived() = forceAligned() / other; }
protected:
- const Scalar* __restrict__ m_data;
+ const Scalar* EIGEN_RESTRICT m_data;
const ei_int_if_dynamic<RowsAtCompileTime> m_rows;
const ei_int_if_dynamic<ColsAtCompileTime> m_cols;
};