aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/Ones.h
diff options
context:
space:
mode:
Diffstat (limited to 'Eigen/src/Core/Ones.h')
-rw-r--r--Eigen/src/Core/Ones.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Eigen/src/Core/Ones.h b/Eigen/src/Core/Ones.h
index 34bc3e8a7..836887c43 100644
--- a/Eigen/src/Core/Ones.h
+++ b/Eigen/src/Core/Ones.h
@@ -44,12 +44,12 @@ struct ei_traits<Ones<MatrixType> >
};
};
-template<typename MatrixType> class Ones : NoOperatorEquals,
+template<typename MatrixType> class Ones : ei_no_assignment_operator,
public MatrixBase<Ones<MatrixType> >
{
public:
- EIGEN_BASIC_PUBLIC_INTERFACE(Ones)
+ EIGEN_GENERIC_PUBLIC_INTERFACE(Ones)
private:
@@ -72,8 +72,8 @@ template<typename MatrixType> class Ones : 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 matrix where all coefficients equal one.