aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/ArrayWrapper.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2014-03-04 17:24:00 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2014-03-04 17:24:00 +0100
commit7313f32efa5fe881469e14f81268a98c6d488ee7 (patch)
tree4a4849ee7560025ec0522b748b4dd69475258153 /Eigen/src/Core/ArrayWrapper.h
parent04e1e38eedad891862083de85b965b8660dea6f7 (diff)
Help MSVC to inline some trivial functions
Diffstat (limited to 'Eigen/src/Core/ArrayWrapper.h')
-rw-r--r--Eigen/src/Core/ArrayWrapper.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/Core/ArrayWrapper.h b/Eigen/src/Core/ArrayWrapper.h
index 21830745b..4bb648024 100644
--- a/Eigen/src/Core/ArrayWrapper.h
+++ b/Eigen/src/Core/ArrayWrapper.h
@@ -49,7 +49,7 @@ class ArrayWrapper : public ArrayBase<ArrayWrapper<ExpressionType> >
typedef typename internal::nested<ExpressionType>::type NestedExpressionType;
EIGEN_DEVICE_FUNC
- inline ArrayWrapper(ExpressionType& matrix) : m_expression(matrix) {}
+ EIGEN_STRONG_INLINE ArrayWrapper(ExpressionType& matrix) : m_expression(matrix) {}
EIGEN_DEVICE_FUNC
inline Index rows() const { return m_expression.rows(); }