From f7d5b9323d357a25c4b8533b1510d391008cb17d Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Wed, 29 Jul 2015 11:08:49 +0200 Subject: [PATCH] typo --- Eigen/src/Core/Matrix.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Eigen/src/Core/Matrix.h b/Eigen/src/Core/Matrix.h index a9cc59fa1..83c1ef2c8 100644 --- a/Eigen/src/Core/Matrix.h +++ b/Eigen/src/Core/Matrix.h @@ -104,7 +104,7 @@ namespace Eigen { * Matrix typeEquivalent C structure * \code Matrix \endcode\code * struct { - * T *data; // with (size_t(data)%EIGEN_MAX_ALIGN)==0 + * T *data; // with (size_t(data)%EIGEN_MAX_ALIGN_BYTES)==0 * Eigen::Index rows, cols; * }; * \endcode @@ -112,7 +112,7 @@ namespace Eigen { * Matrix * Matrix \endcode\code * struct { - * T *data; // with (size_t(data)%EIGEN_MAX_ALIGN)==0 + * T *data; // with (size_t(data)%EIGEN_MAX_ALIGN_BYTES)==0 * Eigen::Index size; * }; * \endcode @@ -129,7 +129,7 @@ namespace Eigen { * \endcode * * Note that in this table Rows, Cols, MaxRows and MaxCols are all positive integers. A(S) is defined to the largest possible power-of-two - * smaller to EIGEN_MAX_STATIC_ALIGN. + * smaller to EIGEN_MAX_STATIC_ALIGN_BYTES. * * \see MatrixBase for the majority of the API methods for matrices, \ref TopicClassHierarchy, * \ref TopicStorageOrders