mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-05-04 17:54:07 +08:00
Fixed typos
This commit is contained in:
parent
e4d45f3440
commit
be08e82953
@ -138,26 +138,26 @@ struct index_statically_lt_impl<const DimensionList<Index, Rank> > {
|
||||
|
||||
#else
|
||||
template <typename Index, std::size_t Rank>
|
||||
struct index_known_statically<DimensionList<Index, Rank> > {
|
||||
EIGEN_ALWAYS_INLINE bool operator() (const DenseIndex) const {
|
||||
struct index_known_statically_impl<DimensionList<Index, Rank> > {
|
||||
static EIGEN_ALWAYS_INLINE bool run(const DenseIndex) {
|
||||
return true;
|
||||
}
|
||||
};
|
||||
template <typename Index, std::size_t Rank>
|
||||
struct index_known_statically<const DimensionList<Index, Rank> > {
|
||||
EIGEN_ALWAYS_INLINE bool operator() (const DenseIndex) const {
|
||||
struct index_known_statically_impl<const DimensionList<Index, Rank> > {
|
||||
static EIGEN_ALWAYS_INLINE bool run(const DenseIndex) {
|
||||
return true;
|
||||
}
|
||||
};
|
||||
|
||||
template <typename Index, std::size_t Rank>
|
||||
struct all_indices_known_statically<DimensionList<Index, Rank> > {
|
||||
struct all_indices_known_statically_impl<DimensionList<Index, Rank> > {
|
||||
EIGEN_ALWAYS_INLINE bool operator() () const {
|
||||
return true;
|
||||
}
|
||||
};
|
||||
template <typename Index, std::size_t Rank>
|
||||
struct all_indices_known_statically<const DimensionList<Index, Rank> > {
|
||||
struct all_indices_known_statically_impl<const DimensionList<Index, Rank> > {
|
||||
EIGEN_ALWAYS_INLINE bool operator() () const {
|
||||
return true;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user