From 193eedbfe2380cfc5d9ac84d68ba1275da28c416 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Tue, 20 Jul 2010 14:19:00 +0200 Subject: [PATCH] one more fix for openmp --- 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 c838b2e60..6c60ce5eb 100644 --- a/Eigen/src/Core/products/GeneralMatrixMatrix.h +++ b/Eigen/src/Core/products/GeneralMatrixMatrix.h @@ -93,7 +93,7 @@ static void run(Index rows, Index cols, Index depth, LhsScalar* blockA = ei_aligned_stack_new(LhsScalar, kc*mc); std::size_t sizeW = kc*Traits::WorkSpaceFactor; RhsScalar* w = ei_aligned_stack_new(RhsScalar, sizeW); - LhsScalar* blockB = blocking.blockB(); + RhsScalar* blockB = blocking.blockB(); ei_internal_assert(blockB!=0); // For each horizontal panel of the rhs, and corresponding vertical panel of the lhs...