mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Fixed a few more typos
This commit is contained in:
@@ -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;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user