mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-06-04 18:54:00 +08:00
Fix integer conversion warning
This commit is contained in:
parent
ddbc564386
commit
c2f4e8c08e
@ -194,7 +194,7 @@ template <std::ptrdiff_t V1=0, std::ptrdiff_t V2=0, std::ptrdiff_t V3=0, std::pt
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE DenseIndex operator[] (const int index) const {
|
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Index operator[] (const Index index) const {
|
||||||
switch (index) {
|
switch (index) {
|
||||||
case 0:
|
case 0:
|
||||||
return internal::get<0, Base>::value;
|
return internal::get<0, Base>::value;
|
||||||
@ -208,7 +208,7 @@ template <std::ptrdiff_t V1=0, std::ptrdiff_t V2=0, std::ptrdiff_t V3=0, std::pt
|
|||||||
return internal::get<4, Base>::value;
|
return internal::get<4, Base>::value;
|
||||||
default:
|
default:
|
||||||
eigen_assert(false && "index overflow");
|
eigen_assert(false && "index overflow");
|
||||||
return static_cast<DenseIndex>(-1);
|
return static_cast<Index>(-1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user