aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Array/ArrayBase.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2010-01-06 17:16:30 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2010-01-06 17:16:30 +0100
commitc11300dbd52accc3724300854ede5df4b09ab2a6 (patch)
tree4b0341a69c84b8161ec9db857fe5fc9ffd395790 /Eigen/src/Array/ArrayBase.h
parenta0efdd843c7c47839e31501495cb67e456d7154f (diff)
a couple of fixes
Diffstat (limited to 'Eigen/src/Array/ArrayBase.h')
-rw-r--r--Eigen/src/Array/ArrayBase.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/Eigen/src/Array/ArrayBase.h b/Eigen/src/Array/ArrayBase.h
index 9e8d0c927..0effa2e2d 100644
--- a/Eigen/src/Array/ArrayBase.h
+++ b/Eigen/src/Array/ArrayBase.h
@@ -148,14 +148,6 @@ template<typename Derived> class ArrayBase
template<typename OtherDerived>
Derived& operator/=(const ArrayBase<OtherDerived>& other);
- template<typename OtherDerived>
- inline bool operator==(const ArrayBase<OtherDerived>& other) const
- { return cwiseEqual(other).all(); }
-
- template<typename OtherDerived>
- inline bool operator!=(const ArrayBase<OtherDerived>& other) const
- { return cwiseNotEqual(other).all(); }
-
public:
MatrixWrapper<Derived> matrix() { return derived(); }
const MatrixWrapper<Derived> matrix() const { return derived(); }