aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/CwiseUnaryView.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2015-06-19 17:56:39 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2015-06-19 17:56:39 +0200
commit846b227bb7cb75b15d56b864fd294e028a33db3a (patch)
treee43c0703640ad6767bf8707972632a1b808ba6ed /Eigen/src/Core/CwiseUnaryView.h
parent386d9e5ebdff7f986a4f707e965703f2785dc292 (diff)
Get rid of class internal::nested<> (still have to updated Tensor module)
Diffstat (limited to 'Eigen/src/Core/CwiseUnaryView.h')
-rw-r--r--Eigen/src/Core/CwiseUnaryView.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/Eigen/src/Core/CwiseUnaryView.h b/Eigen/src/Core/CwiseUnaryView.h
index 6680f32dd..72244751e 100644
--- a/Eigen/src/Core/CwiseUnaryView.h
+++ b/Eigen/src/Core/CwiseUnaryView.h
@@ -84,8 +84,7 @@ class CwiseUnaryView : public CwiseUnaryViewImpl<ViewOp, MatrixType, typename in
nestedExpression() { return m_matrix.const_cast_derived(); }
protected:
- // FIXME changed from MatrixType::Nested because of a weird compilation error with sun CC
- typename internal::nested<MatrixType>::type m_matrix;
+ typename internal::ref_selector<MatrixType>::type m_matrix;
ViewOp m_functor;
};