Remove useless "explicit", and fix inline/static order.

This commit is contained in:
Gael Guennebaud
2015-12-11 10:59:39 +01:00
parent 79c1e6d0a6
commit 30b5c4cd14
5 changed files with 6 additions and 6 deletions

2
Eigen/src/SVD/JacobiSVD.h Normal file → Executable file
View File

@@ -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);
}