oops, remove extra 'typename'

This commit is contained in:
Benoit Jacob 2010-05-30 16:41:16 -04:00
parent aaaade4b3d
commit 6ce22a61b3
2 changed files with 2 additions and 2 deletions

View File

@ -48,7 +48,7 @@ template<>
struct ei_index<Dense>
{ 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
* can be accessed using value() and setValue().

View File

@ -96,7 +96,7 @@ template<>
struct ei_index<Sparse>
{ typedef EIGEN_DEFAULT_SPARSE_INDEX_TYPE type; };
typedef typename ei_index<Sparse>::type SparseIndex;
typedef ei_index<Sparse>::type SparseIndex;
enum SparseBackend {
DefaultBackend,