From 13e46ad84767846972243294d8ebbd3949872015 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Tue, 31 Jan 2012 23:11:13 +0100 Subject: [PATCH] add missing return *this --- Eigen/src/LU/FullPivLU.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Eigen/src/LU/FullPivLU.h b/Eigen/src/LU/FullPivLU.h index 46ae7d651..992bdf7c4 100644 --- a/Eigen/src/LU/FullPivLU.h +++ b/Eigen/src/LU/FullPivLU.h @@ -282,6 +282,7 @@ template class FullPivLU FullPivLU& setThreshold(Default_t) { m_usePrescribedThreshold = false; + return *this; } /** Returns the threshold that will be used by certain methods such as rank().