From 8d7810a4762776fa7363e9bfcac429e7d8b58645 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Wed, 28 Dec 2016 23:35:43 +0100 Subject: [PATCH] bug #1365: fix another type mismatch warning (sync is set from and compared to an Index) --- Eigen/src/Core/products/Parallelizer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Eigen/src/Core/products/Parallelizer.h b/Eigen/src/Core/products/Parallelizer.h index 2a31e4cbe..3477d7182 100644 --- a/Eigen/src/Core/products/Parallelizer.h +++ b/Eigen/src/Core/products/Parallelizer.h @@ -75,7 +75,7 @@ template struct GemmParallelInfo { GemmParallelInfo() : sync(-1), users(0), lhs_start(0), lhs_length(0) {} - int volatile sync; + Index volatile sync; int volatile users; Index lhs_start;