Update comment referencing removed macro EIGEN_SIZE_MIN_PREFER_DYNAMIC

This commit is contained in:
Arthur 2022-01-14 19:29:47 +00:00 committed by David Tellenbach
parent ff4dffc34d
commit 5fe0115724

View File

@ -37,7 +37,7 @@ struct umeyama_transform_matrix_type
MinRowsAtCompileTime = internal::min_size_prefer_dynamic(MatrixType::RowsAtCompileTime, OtherMatrixType::RowsAtCompileTime),
// When possible we want to choose some small fixed size value since the result
// is likely to fit on the stack. So here, EIGEN_SIZE_MIN_PREFER_DYNAMIC is not what we want.
// is likely to fit on the stack. So here, min_size_prefer_dynamic is not what we want.
HomogeneousDimension = int(MinRowsAtCompileTime) == Dynamic ? Dynamic : int(MinRowsAtCompileTime)+1
};