aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2016-12-28 23:35:43 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2016-12-28 23:35:43 +0100
commit8d7810a4762776fa7363e9bfcac429e7d8b58645 (patch)
tree75d12d8e1afaa7c368b5f4e28a64570f907c2f50 /Eigen
parent97812ff0d30c2fd5c93791a63a941d0960a64b69 (diff)
bug #1365: fix another type mismatch warning
(sync is set from and compared to an Index)
Diffstat (limited to 'Eigen')
-rw-r--r--Eigen/src/Core/products/Parallelizer.h2
1 files changed, 1 insertions, 1 deletions
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<typename Index> 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;