remove the Matrix_ prefix

This commit is contained in:
Benoit Jacob
2009-01-06 18:07:16 +00:00
parent 8e888a45d0
commit 2db434265b
7 changed files with 18 additions and 20 deletions

View File

@@ -30,7 +30,7 @@
* Static array automatically aligned if the total byte size is a multiple of 16 and the matrix options require auto alignment
*/
template <typename T, int Size, int MatrixOptions,
bool Align = (MatrixOptions&Matrix_AutoAlign) && (((Size*sizeof(T))&0xf)==0)
bool Align = (MatrixOptions&AutoAlign) && (((Size*sizeof(T))&0xf)==0)
> struct ei_matrix_array
{
EIGEN_ALIGN_128 T array[Size];