Half-way commit prefixing object names. I am forced to commit now

because I renamed a file once with a wrong filename and svn refuses to
let me rename it again, tells me i should propagate first.
This commit is contained in:
Benoit Jacob
2007-09-27 19:38:40 +00:00
parent 4e299afb1f
commit 5160e9d029
13 changed files with 114 additions and 119 deletions

View File

@@ -29,7 +29,7 @@
template<typename Scalar,
int RowsAtCompileTime,
int ColsAtCompileTime>
class MatrixStorage
class EiMatrixStorage
{
protected:
Scalar m_array[RowsAtCompileTime * RowsAtCompileTime];
@@ -55,7 +55,7 @@ class MatrixStorage
};
template<typename Scalar>
class MatrixStorage<Scalar, DynamicSize, 1>
class MatrixStorage<Scalar, EiDynamic, 1>
{
protected:
int m_rows;
@@ -88,7 +88,7 @@ class MatrixStorage<Scalar, DynamicSize, 1>
};
template<typename Scalar>
class MatrixStorage<Scalar, DynamicSize, DynamicSize>
class MatrixStorage<Scalar, EiDynamic, EiDynamic>
{
protected:
int m_rows, m_cols;