aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Core/Util.h
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2007-11-27 13:57:51 +0000
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2007-11-27 13:57:51 +0000
commit39f1776bde27b159814148a54483b6b2bdf51aa8 (patch)
treee369c7ad167a338db04f0e250d6f23065b3a53a6 /src/Core/Util.h
parent344623e872c455114f73b84fb02210c12a97e133 (diff)
rename Object -> MatrixBase
Diffstat (limited to 'src/Core/Util.h')
-rw-r--r--src/Core/Util.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Core/Util.h b/src/Core/Util.h
index 1eafe4514..f9cab96da 100644
--- a/src/Core/Util.h
+++ b/src/Core/Util.h
@@ -88,20 +88,20 @@ const int Dynamic = -1;
#define EIGEN_INHERIT_ASSIGNMENT_OPERATOR(Derived, Op) \
template<typename OtherScalar, typename OtherDerived> \
-Derived& operator Op(const Object<OtherScalar, OtherDerived>& other) \
+Derived& operator Op(const MatrixBase<OtherScalar, OtherDerived>& other) \
{ \
- return Object<Scalar, Derived>::operator Op(other); \
+ return MatrixBase<Scalar, Derived>::operator Op(other); \
} \
Derived& operator Op(const Derived& other) \
{ \
- return Object<Scalar, Derived>::operator Op(other); \
+ return MatrixBase<Scalar, Derived>::operator Op(other); \
}
#define EIGEN_INHERIT_SCALAR_ASSIGNMENT_OPERATOR(Derived, Op) \
template<typename Other> \
Derived& operator Op(const Other& scalar) \
{ \
- return Object<Scalar, Derived>::operator Op(scalar); \
+ return MatrixBase<Scalar, Derived>::operator Op(scalar); \
}
#define EIGEN_INHERIT_ASSIGNMENT_OPERATORS(Derived) \