mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-08-12 11:49:02 +08:00
oops, remove extra 'typename'
This commit is contained in:
parent
aaaade4b3d
commit
6ce22a61b3
@ -48,7 +48,7 @@ template<>
|
|||||||
struct ei_index<Dense>
|
struct ei_index<Dense>
|
||||||
{ typedef EIGEN_DEFAULT_DENSE_INDEX_TYPE type; };
|
{ typedef EIGEN_DEFAULT_DENSE_INDEX_TYPE type; };
|
||||||
|
|
||||||
typedef typename ei_index<Dense>::type DenseIndex;
|
typedef ei_index<Dense>::type DenseIndex;
|
||||||
|
|
||||||
/** \internal If the template parameter Value is Dynamic, this class is just a wrapper around a T variable that
|
/** \internal If the template parameter Value is Dynamic, this class is just a wrapper around a T variable that
|
||||||
* can be accessed using value() and setValue().
|
* can be accessed using value() and setValue().
|
||||||
|
@ -96,7 +96,7 @@ template<>
|
|||||||
struct ei_index<Sparse>
|
struct ei_index<Sparse>
|
||||||
{ typedef EIGEN_DEFAULT_SPARSE_INDEX_TYPE type; };
|
{ typedef EIGEN_DEFAULT_SPARSE_INDEX_TYPE type; };
|
||||||
|
|
||||||
typedef typename ei_index<Sparse>::type SparseIndex;
|
typedef ei_index<Sparse>::type SparseIndex;
|
||||||
|
|
||||||
enum SparseBackend {
|
enum SparseBackend {
|
||||||
DefaultBackend,
|
DefaultBackend,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user