aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Core/Zero.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/Zero.h
parent344623e872c455114f73b84fb02210c12a97e133 (diff)
rename Object -> MatrixBase
Diffstat (limited to 'src/Core/Zero.h')
-rw-r--r--src/Core/Zero.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Core/Zero.h b/src/Core/Zero.h
index 1d64730da..12168a4ba 100644
--- a/src/Core/Zero.h
+++ b/src/Core/Zero.h
@@ -27,11 +27,11 @@
#define EIGEN_ZERO_H
template<typename MatrixType> class Zero
- : public Object<typename MatrixType::Scalar, Zero<MatrixType> >
+ : public MatrixBase<typename MatrixType::Scalar, Zero<MatrixType> >
{
public:
typedef typename MatrixType::Scalar Scalar;
- friend class Object<Scalar, Zero<MatrixType> >;
+ friend class MatrixBase<Scalar, Zero<MatrixType> >;
static const int RowsAtCompileTime = MatrixType::RowsAtCompileTime,
ColsAtCompileTime = MatrixType::ColsAtCompileTime;
@@ -61,7 +61,7 @@ template<typename MatrixType> class Zero
};
template<typename Scalar, typename Derived>
-Zero<Derived> Object<Scalar, Derived>::zero(int rows, int cols)
+Zero<Derived> MatrixBase<Scalar, Derived>::zero(int rows, int cols)
{
return Zero<Derived>(rows, cols);
}