From 8163757cf098efe36e60a3c39b78d1d960a4778c Mon Sep 17 00:00:00 2001 From: Hauke Heibel Date: Thu, 6 Aug 2009 11:27:25 +0200 Subject: [PATCH] fix vs.net compilation issue --- Eigen/src/Core/products/GeneralMatrixMatrix.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Eigen/src/Core/products/GeneralMatrixMatrix.h b/Eigen/src/Core/products/GeneralMatrixMatrix.h index a9caa9cd3..365499001 100644 --- a/Eigen/src/Core/products/GeneralMatrixMatrix.h +++ b/Eigen/src/Core/products/GeneralMatrixMatrix.h @@ -350,7 +350,7 @@ struct ei_gebp_kernel template struct ei_gemm_pack_lhs { - void operator()(Scalar* blockA, const EIGEN_RESTRICT Scalar* _lhs, int lhsStride, int depth, int rows, + void operator()(Scalar* blockA, const Scalar* EIGEN_RESTRICT _lhs, int lhsStride, int depth, int rows, int stride=0, int offset=0) { ei_assert(((!PanelMode) && stride==0 && offset==0) || (PanelMode && stride>=depth && offset<=stride));