mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-05-11 23:39:03 +08:00
Fixed a few more typos
This commit is contained in:
parent
be08e82953
commit
2c73633b28
@ -152,13 +152,13 @@ struct index_known_statically_impl<const DimensionList<Index, Rank> > {
|
|||||||
|
|
||||||
template <typename Index, std::size_t Rank>
|
template <typename Index, std::size_t Rank>
|
||||||
struct all_indices_known_statically_impl<DimensionList<Index, Rank> > {
|
struct all_indices_known_statically_impl<DimensionList<Index, Rank> > {
|
||||||
EIGEN_ALWAYS_INLINE bool operator() () const {
|
static EIGEN_ALWAYS_INLINE bool run() {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
template <typename Index, std::size_t Rank>
|
template <typename Index, std::size_t Rank>
|
||||||
struct all_indices_known_statically_impl<const DimensionList<Index, Rank> > {
|
struct all_indices_known_statically_impl<const DimensionList<Index, Rank> > {
|
||||||
EIGEN_ALWAYS_INLINE bool operator() () const {
|
static EIGEN_ALWAYS_INLINE bool run() {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user