aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/Zero.h
diff options
context:
space:
mode:
Diffstat (limited to 'Eigen/src/Core/Zero.h')
-rw-r--r--Eigen/src/Core/Zero.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Eigen/src/Core/Zero.h b/Eigen/src/Core/Zero.h
index 7848bb048..3c9fbf533 100644
--- a/Eigen/src/Core/Zero.h
+++ b/Eigen/src/Core/Zero.h
@@ -44,12 +44,12 @@ struct ei_traits<Zero<MatrixType> >
};
};
-template<typename MatrixType> class Zero : NoOperatorEquals,
+template<typename MatrixType> class Zero : ei_no_assignment_operator,
public MatrixBase<Zero<MatrixType> >
{
public:
- EIGEN_BASIC_PUBLIC_INTERFACE(Zero)
+ EIGEN_GENERIC_PUBLIC_INTERFACE(Zero)
private:
@@ -73,8 +73,8 @@ template<typename MatrixType> class Zero : NoOperatorEquals,
}
protected:
- const IntAtRunTimeIfDynamic<RowsAtCompileTime> m_rows;
- const IntAtRunTimeIfDynamic<ColsAtCompileTime> m_cols;
+ const ei_int_if_dynamic<RowsAtCompileTime> m_rows;
+ const ei_int_if_dynamic<ColsAtCompileTime> m_cols;
};
/** \returns an expression of a zero matrix.