mirror of https://github.com/CGAL/cgal
Fix a compilation error
A template specialization (that is a complete specialization) is not a template. The typename keyword must not be used in typedefs.
This commit is contained in:
parent
83ae4dfda7
commit
7cc17ddece
|
|
@ -104,11 +104,11 @@ template<>
|
|||
class Eigen_solver_traits< Eigen::BiCGSTAB<Eigen_sparse_matrix<double>::EigenType> >
|
||||
{
|
||||
typedef Eigen::BiCGSTAB<Eigen_sparse_matrix<double>::EigenType> EigenSolverT;
|
||||
typedef typename EigenSolverT::Scalar Scalar;
|
||||
typedef EigenSolverT::Scalar Scalar;
|
||||
// Public types
|
||||
public:
|
||||
typedef Scalar NT;
|
||||
typedef typename internal::Get_eigen_matrix<EigenSolverT,NT>::type Matrix;
|
||||
typedef internal::Get_eigen_matrix<EigenSolverT,NT>::type Matrix;
|
||||
typedef Eigen_vector<Scalar> Vector;
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue