mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-06-04 18:54:00 +08:00
bug #1472: fix warning
This commit is contained in:
parent
8579195169
commit
0e85a677e3
@ -114,7 +114,7 @@ template<typename PlainObjectType, int MapOptions, typename StrideType> class Ma
|
|||||||
inline Index outerStride() const
|
inline Index outerStride() const
|
||||||
{
|
{
|
||||||
return StrideType::OuterStrideAtCompileTime != 0 ? m_stride.outer()
|
return StrideType::OuterStrideAtCompileTime != 0 ? m_stride.outer()
|
||||||
: internal::traits<Map>::OuterStrideAtCompileTime != Dynamic ? internal::traits<Map>::OuterStrideAtCompileTime
|
: internal::traits<Map>::OuterStrideAtCompileTime != Dynamic ? Index(internal::traits<Map>::OuterStrideAtCompileTime)
|
||||||
: IsVectorAtCompileTime ? (this->size() * innerStride())
|
: IsVectorAtCompileTime ? (this->size() * innerStride())
|
||||||
: int(Flags)&RowMajorBit ? (this->cols() * innerStride())
|
: int(Flags)&RowMajorBit ? (this->cols() * innerStride())
|
||||||
: (this->rows() * innerStride());
|
: (this->rows() * innerStride());
|
||||||
|
Loading…
x
Reference in New Issue
Block a user