From 5fe01157249b722e7d73c618d737be0765e15d35 Mon Sep 17 00:00:00 2001 From: Arthur Date: Fri, 14 Jan 2022 19:29:47 +0000 Subject: [PATCH] Update comment referencing removed macro EIGEN_SIZE_MIN_PREFER_DYNAMIC --- Eigen/src/Geometry/Umeyama.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Eigen/src/Geometry/Umeyama.h b/Eigen/src/Geometry/Umeyama.h index ffd3bcf0c..98adc4bc7 100644 --- a/Eigen/src/Geometry/Umeyama.h +++ b/Eigen/src/Geometry/Umeyama.h @@ -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 };