aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen
diff options
context:
space:
mode:
authorGravatar Hauke Heibel <hauke.heibel@gmail.com>2009-09-27 17:18:19 +0200
committerGravatar Hauke Heibel <hauke.heibel@gmail.com>2009-09-27 17:18:19 +0200
commite115fa3cead89763d4c07a5de834220f6fd73e4a (patch)
tree0d0f6490f15a2ee2439a932e1a3864efddc57386 /Eigen
parent3c74d6b7d4598196d9356510a686fb7f929cf04d (diff)
Ok, too many class bodies - it was only required for ei_svd_precondition_2x2_block_to_be_real.
Diffstat (limited to 'Eigen')
-rw-r--r--Eigen/src/SVD/JacobiSVD.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Eigen/src/SVD/JacobiSVD.h b/Eigen/src/SVD/JacobiSVD.h
index d6b4561cf..6a0597893 100644
--- a/Eigen/src/SVD/JacobiSVD.h
+++ b/Eigen/src/SVD/JacobiSVD.h
@@ -34,13 +34,13 @@ template<typename MatrixType, unsigned int Options,
bool PossiblyMoreRowsThanCols = (Options & AtLeastAsManyColsAsRows) == 0
&& (MatrixType::RowsAtCompileTime==Dynamic
|| (MatrixType::RowsAtCompileTime>MatrixType::ColsAtCompileTime))>
-struct ei_svd_precondition_if_more_rows_than_cols {};
+struct ei_svd_precondition_if_more_rows_than_cols;
template<typename MatrixType, unsigned int Options,
bool PossiblyMoreColsThanRows = (Options & AtLeastAsManyRowsAsCols) == 0
&& (MatrixType::ColsAtCompileTime==Dynamic
|| (MatrixType::ColsAtCompileTime>MatrixType::RowsAtCompileTime))>
-struct ei_svd_precondition_if_more_cols_than_rows {};
+struct ei_svd_precondition_if_more_cols_than_rows;
/** \ingroup SVD_Module
* \nonstableyet