From 15ac3765c41b39d387736db46607c7b8460710fa Mon Sep 17 00:00:00 2001 From: Charles Schlosser Date: Mon, 3 Jul 2023 03:49:37 +0000 Subject: [PATCH] Fix ivcSize return type in IndexedViewMethods.h --- Eigen/src/plugins/IndexedViewMethods.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Eigen/src/plugins/IndexedViewMethods.h b/Eigen/src/plugins/IndexedViewMethods.h index 78f12fe05..e5432eacc 100644 --- a/Eigen/src/plugins/IndexedViewMethods.h +++ b/Eigen/src/plugins/IndexedViewMethods.h @@ -37,7 +37,7 @@ inline IvcColType ivcCol(const Indices& indices) const { } template -inline IvcColType ivcSize(const Indices& indices) const { +inline IvcType ivcSize(const Indices& indices) const { return internal::makeIndexedViewCompatible( indices, internal::variable_if_dynamic(derived().size()), Specialized); }