From f8cb9a6230d21d9b9fa618f3d5ebc4ecb6ab6de1 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Sat, 19 Dec 2009 13:45:14 +0100 Subject: [PATCH] oops, remove duplicated ctor --- Eigen/src/Core/Functors.h | 1 - 1 file changed, 1 deletion(-) 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