Skip to content

Commit

Permalink
added template arguments to wrong line
Browse files Browse the repository at this point in the history
  • Loading branch information
cdeterman committed Jan 29, 2018
1 parent 40a2f3c commit 93527ef
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions inst/include/viennacl/meta/result_of.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -172,14 +172,14 @@ struct size_type<arma::SpMat<NumericT> > { typedef vcl_size_t type; };
#endif

#ifdef VIENNACL_WITH_EIGEN
template<class T, int a, int b, int c, int d, int e, int f, typename g>
struct size_type< Eigen::Matrix<T, a, b, c, d, e>, f, g >
template<class T, int a, int b, int c, int d, int e>
struct size_type< Eigen::Matrix<T, a, b, c, d, e>>
{
typedef vcl_size_t type;
};

template<class T, int a, int b, int c, int d, int e>
struct size_type< Eigen::Map<Eigen::Matrix<T, a, b, c, d, e> > >
template<class T, int a, int b, int c, int d, int e, int f, typename g>
struct size_type< Eigen::Map<Eigen::Matrix<T, a, b, c, d, e>, f, g > >
{
typedef vcl_size_t type;
};
Expand Down

0 comments on commit 93527ef

Please sign in to comment.