aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen
diff options
context:
space:
mode:
authorGravatar Nikolay Fedorov <unril@live.ru>2015-12-03 15:21:43 +0000
committerGravatar Nikolay Fedorov <unril@live.ru>2015-12-03 15:21:43 +0000
commit944647c0aac7e14fb4cb50cf022c21e1940ac212 (patch)
tree6a4eb05448f58ee65eb34591c6a4a1cc2aed2ded /Eigen
parentd2d4c45d55afc7294baa292dd6fc0440dee0a04b (diff)
Fixes internal compiler error while compiling with VC2015 Update1 x64.
Diffstat (limited to 'Eigen')
-rw-r--r--Eigen/src/Core/products/GeneralMatrixMatrix.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/Core/products/GeneralMatrixMatrix.h b/Eigen/src/Core/products/GeneralMatrixMatrix.h
index 3fba82ff8..d830dfb96 100644
--- a/Eigen/src/Core/products/GeneralMatrixMatrix.h
+++ b/Eigen/src/Core/products/GeneralMatrixMatrix.h
@@ -149,7 +149,7 @@ static void run(Index rows, Index cols, Index depth,
{
for(Index i=0; i<threads; ++i)
#pragma omp atomic
- --(info[i].users);
+ info[i].users -= 1;
}
}
}