aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/Matrix.h
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2008-06-01 03:36:49 +0000
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2008-06-01 03:36:49 +0000
commitdc5fd8dfffad9c19dc6699d5ab1f435f1c10b6e8 (patch)
tree278b284b014dbb948bd7420a95d359a61f1ece90 /Eigen/src/Core/Matrix.h
parentd5cbb1d0024f75b1d571ef724fbed3f6eeb5ee31 (diff)
meagre outcome for so much time spent!
* fix inverse() bug discovered by Gael's test * fix warnings introduced by the new Diagonal stuff * update Doxyfile to v1.5.6
Diffstat (limited to 'Eigen/src/Core/Matrix.h')
-rw-r--r--Eigen/src/Core/Matrix.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/Core/Matrix.h b/Eigen/src/Core/Matrix.h
index f7489491f..6c7a42f94 100644
--- a/Eigen/src/Core/Matrix.h
+++ b/Eigen/src/Core/Matrix.h
@@ -267,7 +267,7 @@ class Matrix : public MatrixBase<Matrix<_Scalar, _Rows, _Cols, _Flags, _MaxRows,
else
{
ei_assert(x > 0 && (RowsAtCompileTime == Dynamic || RowsAtCompileTime == x)
- && y > 0 && (ColsAtCompileTime == Dynamic || ColsAtCompileTime == y));
+ && y > 0 && (ColsAtCompileTime == Dynamic || ColsAtCompileTime == y));
}
}
/** constructs an initialized 2D vector with given coefficients */