diff --git a/Eigen/src/Core/Functors.h b/Eigen/src/Core/Functors.h index 1a4edfc4a..aa3eba5cc 100644 --- a/Eigen/src/Core/Functors.h +++ b/Eigen/src/Core/Functors.h @@ -446,7 +446,6 @@ struct ei_functor_traits > template struct ei_scalar_identity_op { EIGEN_EMPTY_STRUCT_CTOR(ei_scalar_identity_op) - EIGEN_STRONG_INLINE ei_scalar_identity_op(void) {} EIGEN_STRONG_INLINE const Scalar operator() (int row, int col) const { return row==col ? Scalar(1) : Scalar(0); } }; template