From 8c17fab8f5cfaea1ed613883caaeed5f58a7df85 Mon Sep 17 00:00:00 2001 From: Benoit Jacob Date: Wed, 20 Oct 2010 09:34:13 -0400 Subject: renaming: ei_matrix_storage -> DenseStorage DenseStorageBase -> PlainObjectBase --- Eigen/src/Core/Random.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Eigen/src/Core/Random.h') diff --git a/Eigen/src/Core/Random.h b/Eigen/src/Core/Random.h index 06a20fed0..3c3dc45ab 100644 --- a/Eigen/src/Core/Random.h +++ b/Eigen/src/Core/Random.h @@ -131,7 +131,7 @@ inline Derived& DenseBase::setRandom() */ template EIGEN_STRONG_INLINE Derived& -DenseStorageBase::setRandom(Index size) +PlainObjectBase::setRandom(Index size) { resize(size); return setRandom(); @@ -149,7 +149,7 @@ DenseStorageBase::setRandom(Index size) */ template EIGEN_STRONG_INLINE Derived& -DenseStorageBase::setRandom(Index rows, Index cols) +PlainObjectBase::setRandom(Index rows, Index cols) { resize(rows, cols); return setRandom(); -- cgit v1.2.3