aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2009-01-05 14:26:34 +0000
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2009-01-05 14:26:34 +0000
commit986f301233469e7dcf6015c27e383b2777d70819 (patch)
treefc72059ec14be0a0d0859cc932a210d75e1881ef /Eigen/src/Core
parentd316d4f3933d39cbca67c61c462d45212aa86e13 (diff)
*add PartialRedux::cross() with unit test
*add transform-from-matrices test *undo an unwanted change in Matrix
Diffstat (limited to 'Eigen/src/Core')
-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 bb2bc2e2a..4851036e4 100644
--- a/Eigen/src/Core/Matrix.h
+++ b/Eigen/src/Core/Matrix.h
@@ -119,7 +119,7 @@ struct ei_traits<Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> >
template<typename T, int Rows, int Cols, int Options,
bool NeedsToAlign = ((Options&Matrix_AutoAlign) == Matrix_AutoAlign) && Rows!=Dynamic && Cols!=Dynamic && ((sizeof(T)*Rows*Cols)%16==0)>
-struct ei_matrix_with_aligned_operator_new : public WithAlignedOperatorNew {};
+struct ei_matrix_with_aligned_operator_new : WithAlignedOperatorNew {};
template<typename T, int Rows, int Cols, int Options>
struct ei_matrix_with_aligned_operator_new<T, Rows, Cols, Options, false> {};