bug #1365: fix another type mismatch warning

(sync is set from and compared to an Index)
This commit is contained in:
Gael Guennebaud 2016-12-28 23:35:43 +01:00
parent 97812ff0d3
commit 8d7810a476

View File

@ -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;