From 7002639844b0dc567cea5595ba6dfd597dbf1ce5 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Tue, 31 Jan 2012 23:12:04 +0100 Subject: [PATCH] the default ctor had no sense because of the const reference member --- Eigen/src/Eigen2Support/LU.h | 1 - 1 file changed, 1 deletion(-) diff --git a/Eigen/src/Eigen2Support/LU.h b/Eigen/src/Eigen2Support/LU.h index 7cf92e67a..6427abbf2 100644 --- a/Eigen/src/Eigen2Support/LU.h +++ b/Eigen/src/Eigen2Support/LU.h @@ -57,7 +57,6 @@ class LU : public FullPivLU > ImageResultType; typedef FullPivLU Base; - LU() : Base(), m_originalMatrix() {} template explicit LU(const T& t) : Base(t), m_originalMatrix(t) {}