aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/SVD
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2015-12-11 10:59:39 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2015-12-11 10:59:39 +0100
commit30b5c4cd14bcb9998916e6d782bc3b06465ec510 (patch)
tree0cd024d8705dbb7585d855ce7155bfbc38b3783c /Eigen/src/SVD
parent79c1e6d0a63883cec691eaebcdbf0935ad557f70 (diff)
Remove useless "explicit", and fix inline/static order.
Diffstat (limited to 'Eigen/src/SVD')
-rwxr-xr-x[-rw-r--r--]Eigen/src/SVD/JacobiSVD.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/SVD/JacobiSVD.h b/Eigen/src/SVD/JacobiSVD.h
index e29d36cf2..cb918860c 100644..100755
--- a/Eigen/src/SVD/JacobiSVD.h
+++ b/Eigen/src/SVD/JacobiSVD.h
@@ -539,7 +539,7 @@ template<typename _MatrixType, int QRPreconditioner> class JacobiSVD
* according to the specified problem size.
* \sa JacobiSVD()
*/
- explicit JacobiSVD(Index rows, Index cols, unsigned int computationOptions = 0)
+ JacobiSVD(Index rows, Index cols, unsigned int computationOptions = 0)
{
allocate(rows, cols, computationOptions);
}