aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/ArrayWrapper.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2018-06-28 00:20:59 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2018-06-28 00:20:59 +0200
commit9a81de1d3543d89d2cc5d32294d96b3c58730b21 (patch)
tree373d32618aa19717c5deb6e107e791a9d4ca64d1 /Eigen/src/Core/ArrayWrapper.h
parentf9d337780d49825765cbb8ea51843a905c0e5253 (diff)
Fix order of EIGEN_DEVICE_FUNC and returned type
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 688aadd62..757b31825 100644
--- a/Eigen/src/Core/ArrayWrapper.h
+++ b/Eigen/src/Core/ArrayWrapper.h
@@ -90,8 +90,8 @@ class ArrayWrapper : public ArrayBase<ArrayWrapper<ExpressionType> >
EIGEN_DEVICE_FUNC
inline void evalTo(Dest& dst) const { dst = m_expression; }
- const typename internal::remove_all<NestedExpressionType>::type&
EIGEN_DEVICE_FUNC
+ const typename internal::remove_all<NestedExpressionType>::type&
nestedExpression() const
{
return m_expression;