mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-06-04 18:54:00 +08:00
fix missing const qualifier in cwiseEqual
This commit is contained in:
parent
bd12ac4ffc
commit
7dd4aaba9f
@ -77,6 +77,6 @@ cwiseInverse() const { return derived(); }
|
|||||||
inline const CwiseUnaryOp<std::binder1st<std::equal_to<Scalar> >, const Derived>
|
inline const CwiseUnaryOp<std::binder1st<std::equal_to<Scalar> >, const Derived>
|
||||||
cwiseEqual(const Scalar& s) const
|
cwiseEqual(const Scalar& s) const
|
||||||
{
|
{
|
||||||
return CwiseUnaryOp<std::binder1st<std::equal_to<Scalar> >,Derived>
|
return CwiseUnaryOp<std::binder1st<std::equal_to<Scalar> >,const Derived>
|
||||||
(derived(), std::bind1st(std::equal_to<Scalar>(), s));
|
(derived(), std::bind1st(std::equal_to<Scalar>(), s));
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user